blob: a30e79900086f0eb3955f917a86f0cb891329632 [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
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050039#include "acl.h"
40#include "idmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#endif /* CONFIG_NFSD_V4 */
42
Boaz Harrosh9a74af22009-12-03 20:30:56 +020043#include "nfsd.h"
44#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define NFSDDBG_FACILITY NFSDDBG_FILEOP
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
50 * This is a cache of readahead params that help us choose the proper
51 * readahead strategy. Initially, we set all readahead parameters to 0
52 * and let the VFS handle things.
53 * If you increase the number of cached files very much, you'll need to
54 * add a hash table here.
55 */
56struct raparms {
57 struct raparms *p_next;
58 unsigned int p_count;
59 ino_t p_ino;
60 dev_t p_dev;
61 int p_set;
62 struct file_ra_state p_ra;
Greg Banksfce14562006-10-04 02:15:49 -070063 unsigned int p_hindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Greg Banksfce14562006-10-04 02:15:49 -070066struct raparm_hbucket {
67 struct raparms *pb_head;
68 spinlock_t pb_lock;
69} ____cacheline_aligned_in_smp;
70
Greg Banksfce14562006-10-04 02:15:49 -070071#define RAPARM_HASH_BITS 4
72#define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
73#define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
74static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/*
77 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
78 * a mount point.
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -080079 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * or nfs_ok having possibly changed *dpp and *expp
81 */
82int
83nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
84 struct svc_export **expp)
85{
86 struct svc_export *exp = *expp, *exp2 = NULL;
87 struct dentry *dentry = *dpp;
Al Viro91c9fa82009-04-18 02:42:05 -040088 struct path path = {.mnt = mntget(exp->ex_path.mnt),
89 .dentry = dget(dentry)};
Al Viro6264d692006-10-19 23:28:58 -070090 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Al Viro7cc90cc2011-03-18 09:04:20 -040092 err = follow_down(&path);
David Howellscc53ce52011-01-14 18:45:26 +000093 if (err < 0)
94 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Al Viro91c9fa82009-04-18 02:42:05 -040096 exp2 = rqst_exp_get_by_name(rqstp, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (IS_ERR(exp2)) {
J. Bruce Fields3b6cee7bc2009-10-25 21:18:19 -040098 err = PTR_ERR(exp2);
99 /*
100 * We normally allow NFS clients to continue
101 * "underneath" a mountpoint that is not exported.
102 * The exception is V4ROOT, where no traversal is ever
103 * allowed without an explicit export of the new
104 * directory.
105 */
106 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
107 err = 0;
Al Viro91c9fa82009-04-18 02:42:05 -0400108 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 goto out;
110 }
Steve Dickson3c394dd2009-09-09 15:02:40 -0400111 if (nfsd_v4client(rqstp) ||
112 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 /* successfully crossed mount point */
Al Viro1644ccc2009-04-18 02:32:31 -0400114 /*
Al Viro91c9fa82009-04-18 02:42:05 -0400115 * This is subtle: path.dentry is *not* on path.mnt
116 * at this point. The only reason we are safe is that
117 * original mnt is pinned down by exp, so we should
118 * put path *before* putting exp
Al Viro1644ccc2009-04-18 02:32:31 -0400119 */
Al Viro91c9fa82009-04-18 02:42:05 -0400120 *dpp = path.dentry;
121 path.dentry = dentry;
Al Viro1644ccc2009-04-18 02:32:31 -0400122 *expp = exp2;
Al Viro91c9fa82009-04-18 02:42:05 -0400123 exp2 = exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
Al Viro91c9fa82009-04-18 02:42:05 -0400125 path_put(&path);
126 exp_put(exp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127out:
128 return err;
129}
130
J. Bruce Fields289ede42009-09-26 20:32:24 -0400131static void follow_to_parent(struct path *path)
132{
133 struct dentry *dp;
134
135 while (path->dentry == path->mnt->mnt_root && follow_up(path))
136 ;
137 dp = dget_parent(path->dentry);
138 dput(path->dentry);
139 path->dentry = dp;
140}
141
142static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
143{
144 struct svc_export *exp2;
145 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
146 .dentry = dget(dparent)};
147
148 follow_to_parent(&path);
149
150 exp2 = rqst_exp_parent(rqstp, &path);
151 if (PTR_ERR(exp2) == -ENOENT) {
152 *dentryp = dget(dparent);
153 } else if (IS_ERR(exp2)) {
154 path_put(&path);
155 return PTR_ERR(exp2);
156 } else {
157 *dentryp = dget(path.dentry);
158 exp_put(*exp);
159 *exp = exp2;
160 }
161 path_put(&path);
162 return 0;
163}
164
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400165/*
166 * For nfsd purposes, we treat V4ROOT exports as though there was an
167 * export at *every* directory.
168 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -0400169int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400170{
171 if (d_mountpoint(dentry))
172 return 1;
Trond Myklebust11fcee022011-09-12 19:37:26 -0400173 if (nfsd4_is_junction(dentry))
174 return 1;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400175 if (!(exp->ex_flags & NFSEXP_V4ROOT))
176 return 0;
David Howells2b0143b2015-03-17 22:25:59 +0000177 return d_inode(dentry) != NULL;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400178}
179
Al Viro6264d692006-10-19 23:28:58 -0700180__be32
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700181nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400182 const char *name, unsigned int len,
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700183 struct svc_export **exp_ret, struct dentry **dentry_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 struct svc_export *exp;
186 struct dentry *dparent;
187 struct dentry *dentry;
Al Viro6264d692006-10-19 23:28:58 -0700188 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 dparent = fhp->fh_dentry;
Kinglong Meebf18f162014-06-10 22:06:44 +0800193 exp = exp_get(fhp->fh_export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 /* Lookup the name, but don't follow links */
196 if (isdotent(name, len)) {
197 if (len==1)
198 dentry = dget(dparent);
Jan Blunck54775492008-02-14 19:38:39 -0800199 else if (dparent != exp->ex_path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 dentry = dget_parent(dparent);
J. Bruce Fieldsfed83812009-09-26 16:53:01 -0400201 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 dentry = dget(dparent); /* .. == . just like at / */
203 else {
204 /* checking mountpoint crossing is very different when stepping up */
J. Bruce Fields289ede42009-09-26 20:32:24 -0400205 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
206 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209 } else {
J. Bruce Fields43357232014-01-24 18:04:40 -0500210 /*
211 * In the nfsd4_open() case, this may be held across
212 * subsequent open and delegation acquisition which may
213 * need to take the child's i_mutex:
214 */
215 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 dentry = lookup_one_len(name, dparent, len);
Al Viro6264d692006-10-19 23:28:58 -0700217 host_err = PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (IS_ERR(dentry))
219 goto out_nfserr;
220 /*
221 * check if we have crossed a mount point ...
222 */
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400223 if (nfsd_mountpoint(dentry, exp)) {
Al Viro6264d692006-10-19 23:28:58 -0700224 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 dput(dentry);
226 goto out_nfserr;
227 }
228 }
229 }
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700230 *dentry_ret = dentry;
231 *exp_ret = exp;
232 return 0;
233
234out_nfserr:
235 exp_put(exp);
236 return nfserrno(host_err);
237}
238
239/*
240 * Look up one component of a pathname.
241 * N.B. After this call _both_ fhp and resfh need an fh_put
242 *
243 * If the lookup would cross a mountpoint, and the mounted filesystem
244 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
245 * accepted as it stands and the mounted directory is
246 * returned. Otherwise the covered directory is returned.
247 * NOTE: this mountpoint crossing is not supported properly by all
248 * clients and is explicitly disallowed for NFSv3
249 * NeilBrown <neilb@cse.unsw.edu.au>
250 */
251__be32
252nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400253 unsigned int len, struct svc_fh *resfh)
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700254{
255 struct svc_export *exp;
256 struct dentry *dentry;
257 __be32 err;
258
J. Bruce Fields29a78a32011-04-09 11:28:53 -0400259 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
260 if (err)
261 return err;
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700262 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
263 if (err)
264 return err;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700265 err = check_nfsd_access(exp, rqstp);
266 if (err)
267 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /*
269 * Note: we compose the file handle now, but as the
270 * dentry may be negative, it may need to be updated.
271 */
272 err = fh_compose(resfh, exp, dentry, fhp);
David Howells2b0143b2015-03-17 22:25:59 +0000273 if (!err && d_really_is_negative(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 err = nfserr_noent;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700275out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 exp_put(exp);
278 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Ben Myersf5019122010-02-17 14:05:11 -0600281/*
282 * Commit metadata changes to stable storage.
283 */
284static int
285commit_metadata(struct svc_fh *fhp)
286{
David Howells2b0143b2015-03-17 22:25:59 +0000287 struct inode *inode = d_inode(fhp->fh_dentry);
Ben Myersf5019122010-02-17 14:05:11 -0600288 const struct export_operations *export_ops = inode->i_sb->s_export_op;
Ben Myersf5019122010-02-17 14:05:11 -0600289
290 if (!EX_ISSYNC(fhp->fh_export))
291 return 0;
292
Christoph Hellwigc37650162010-10-06 10:48:20 +0200293 if (export_ops->commit_metadata)
294 return export_ops->commit_metadata(inode);
295 return sync_inode_metadata(inode, 1);
Ben Myersf5019122010-02-17 14:05:11 -0600296}
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800299 * Go over the attributes and take care of the small differences between
300 * NFS semantics and what Linux expects.
301 */
302static void
303nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap)
304{
305 /*
306 * NFSv2 does not differentiate between "set-[ac]time-to-now"
307 * which only requires access, and "set-[ac]time-to-X" which
308 * requires ownership.
309 * So if it looks like it might be "set both to the same time which
310 * is close to now", and if inode_change_ok fails, then we
311 * convert to "set to now" instead of "set to explicit time"
312 *
313 * We only call inode_change_ok as the last test as technically
314 * it is not an interface that we should be using.
315 */
316#define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
317#define MAX_TOUCH_TIME_ERROR (30*60)
318 if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
319 iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
320 /*
321 * Looks probable.
322 *
323 * Now just make sure time is in the right ballpark.
324 * Solaris, at least, doesn't seem to care what the time
325 * request is. We require it be within 30 minutes of now.
326 */
327 time_t delta = iap->ia_atime.tv_sec - get_seconds();
328 if (delta < 0)
329 delta = -delta;
330 if (delta < MAX_TOUCH_TIME_ERROR &&
331 inode_change_ok(inode, iap) != 0) {
332 /*
333 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
334 * This will cause notify_change to set these times
335 * to "now"
336 */
337 iap->ia_valid &= ~BOTH_TIME_SET;
338 }
339 }
340
341 /* sanitize the mode change */
342 if (iap->ia_valid & ATTR_MODE) {
343 iap->ia_mode &= S_IALLUGO;
344 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
345 }
346
347 /* Revoke setuid/setgid on chown */
348 if (!S_ISDIR(inode->i_mode) &&
Stanislav Kholmanskikhc4fa6d72013-12-11 14:16:36 +0400349 ((iap->ia_valid & ATTR_UID) || (iap->ia_valid & ATTR_GID))) {
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800350 iap->ia_valid |= ATTR_KILL_PRIV;
351 if (iap->ia_valid & ATTR_MODE) {
352 /* we're setting mode too, just clear the s*id bits */
353 iap->ia_mode &= ~S_ISUID;
354 if (iap->ia_mode & S_IXGRP)
355 iap->ia_mode &= ~S_ISGID;
356 } else {
357 /* set ATTR_KILL_* bits and let VFS handle it */
358 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
359 }
360 }
361}
362
363static __be32
364nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp,
365 struct iattr *iap)
366{
David Howells2b0143b2015-03-17 22:25:59 +0000367 struct inode *inode = d_inode(fhp->fh_dentry);
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800368 int host_err;
369
370 if (iap->ia_size < inode->i_size) {
371 __be32 err;
372
373 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
374 NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE);
375 if (err)
376 return err;
377 }
378
379 host_err = get_write_access(inode);
380 if (host_err)
381 goto out_nfserrno;
382
383 host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
384 if (host_err)
385 goto out_put_write_access;
386 return 0;
387
388out_put_write_access:
389 put_write_access(inode);
390out_nfserrno:
391 return nfserrno(host_err);
392}
393
394/*
395 * Set various file attributes. After this call fhp needs an fh_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
Al Viro6264d692006-10-19 23:28:58 -0700397__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
399 int check_guard, time_t guardtime)
400{
401 struct dentry *dentry;
402 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200403 int accmode = NFSD_MAY_SATTR;
Al Viro175a4eb2011-07-26 03:30:54 -0400404 umode_t ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700405 __be32 err;
406 int host_err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500407 bool get_write_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 int size_change = 0;
409
410 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200411 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (iap->ia_valid & ATTR_SIZE)
413 ftype = S_IFREG;
414
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500415 /* Callers that do fh_verify should do the fh_want_write: */
416 get_write_count = !fhp->fh_dentry;
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /* Get inode */
419 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800420 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 goto out;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500422 if (get_write_count) {
423 host_err = fh_want_write(fhp);
424 if (host_err)
425 return nfserrno(host_err);
426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000429 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
NeilBrown15b7a1b2005-11-07 01:00:23 -0800431 /* Ignore any mode updates on symlinks */
432 if (S_ISLNK(inode->i_mode))
433 iap->ia_valid &= ~ATTR_MODE;
434
435 if (!iap->ia_valid)
436 goto out;
437
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800438 nfsd_sanitize_attrs(inode, iap);
439
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000440 /*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800441 * The size case is special, it changes the file in addition to the
442 * attributes.
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (iap->ia_valid & ATTR_SIZE) {
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800445 err = nfsd_get_write_access(rqstp, fhp, iap);
446 if (err)
447 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 size_change = 1;
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700449
450 /*
451 * RFC5661, Section 18.30.4:
452 * Changing the size of a file with SETATTR indirectly
453 * changes the time_modify and change attributes.
454 *
455 * (and similar for the older RFCs)
456 */
457 if (iap->ia_size != i_size_read(inode))
458 iap->ia_valid |= ATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 iap->ia_valid |= ATTR_CTIME;
462
Christoph Hellwig987da472013-11-18 05:07:47 -0800463 if (check_guard && guardtime != inode->i_ctime.tv_sec) {
464 err = nfserr_notsync;
465 goto out_put_write_access;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
Christoph Hellwig987da472013-11-18 05:07:47 -0800467
Christoph Hellwig987da472013-11-18 05:07:47 -0800468 fh_lock(fhp);
469 host_err = notify_change(dentry, iap, NULL);
470 fh_unlock(fhp);
J. R. Okajima1406b912014-02-19 00:27:53 +0900471 err = nfserrno(host_err);
Christoph Hellwig987da472013-11-18 05:07:47 -0800472
Christoph Hellwig987da472013-11-18 05:07:47 -0800473out_put_write_access:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (size_change)
475 put_write_access(inode);
476 if (!err)
Jeff Layton722b6202014-07-03 07:54:19 -0400477 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478out:
479 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800482#if defined(CONFIG_NFSD_V4)
Chuck Lever9b4146e2012-01-04 16:26:43 -0500483/*
484 * NFS junction information is stored in an extended attribute.
485 */
486#define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
487
488/**
489 * nfsd4_is_junction - Test if an object could be an NFS junction
490 *
491 * @dentry: object to test
492 *
493 * Returns 1 if "dentry" appears to contain NFS junction information.
494 * Otherwise 0 is returned.
495 */
Trond Myklebust11fcee022011-09-12 19:37:26 -0400496int nfsd4_is_junction(struct dentry *dentry)
497{
David Howells2b0143b2015-03-17 22:25:59 +0000498 struct inode *inode = d_inode(dentry);
Trond Myklebust11fcee022011-09-12 19:37:26 -0400499
500 if (inode == NULL)
501 return 0;
502 if (inode->i_mode & S_IXUGO)
503 return 0;
504 if (!(inode->i_mode & S_ISVTX))
505 return 0;
Chuck Lever9b4146e2012-01-04 16:26:43 -0500506 if (vfs_getxattr(dentry, NFSD_JUNCTION_XATTR_NAME, NULL, 0) <= 0)
Trond Myklebust11fcee022011-09-12 19:37:26 -0400507 return 0;
508 return 1;
509}
David Quigley18032ca2013-05-02 13:19:10 -0400510#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
511__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
512 struct xdr_netobj *label)
513{
514 __be32 error;
515 int host_error;
516 struct dentry *dentry;
517
518 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
519 if (error)
520 return error;
521
522 dentry = fhp->fh_dentry;
523
David Howells2b0143b2015-03-17 22:25:59 +0000524 mutex_lock(&d_inode(dentry)->i_mutex);
David Quigley18032ca2013-05-02 13:19:10 -0400525 host_error = security_inode_setsecctx(dentry, label->data, label->len);
David Howells2b0143b2015-03-17 22:25:59 +0000526 mutex_unlock(&d_inode(dentry)->i_mutex);
David Quigley18032ca2013-05-02 13:19:10 -0400527 return nfserrno(host_error);
528}
529#else
530__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
531 struct xdr_netobj *label)
532{
533 return nfserr_notsupp;
534}
535#endif
536
Anna Schumaker95d871f2014-11-07 14:44:26 -0500537__be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp,
538 struct file *file, loff_t offset, loff_t len,
539 int flags)
540{
541 __be32 err;
542 int error;
543
544 if (!S_ISREG(file_inode(file)->i_mode))
545 return nfserr_inval;
546
547 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry, NFSD_MAY_WRITE);
548 if (err)
549 return err;
550
551 error = vfs_fallocate(file, flags, offset, len);
552 if (!error)
553 error = commit_metadata(fhp);
554
555 return nfserrno(error);
556}
J. Bruce Fields6a85d6c2010-07-06 12:39:12 -0400557#endif /* defined(CONFIG_NFSD_V4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559#ifdef CONFIG_NFSD_V3
560/*
561 * Check server access rights to a file system object
562 */
563struct accessmap {
564 u32 access;
565 int how;
566};
567static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200568 { NFS3_ACCESS_READ, NFSD_MAY_READ },
569 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
570 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
571 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 { 0, 0 }
574};
575
576static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200577 { NFS3_ACCESS_READ, NFSD_MAY_READ },
578 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
579 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
580 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
581 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 { 0, 0 }
584};
585
586static struct accessmap nfs3_anyaccess[] = {
587 /* Some clients - Solaris 2.6 at least, make an access call
588 * to the server to check for access for things like /dev/null
589 * (which really, the server doesn't care about). So
590 * We provide simple access checking for them, looking
591 * mainly at mode bits, and we make sure to ignore read-only
592 * filesystem checks
593 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200594 { NFS3_ACCESS_READ, NFSD_MAY_READ },
595 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
596 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
597 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 { 0, 0 }
600};
601
Al Viro6264d692006-10-19 23:28:58 -0700602__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
604{
605 struct accessmap *map;
606 struct svc_export *export;
607 struct dentry *dentry;
608 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700609 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200611 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (error)
613 goto out;
614
615 export = fhp->fh_export;
616 dentry = fhp->fh_dentry;
617
David Howellse36cb0b2015-01-29 12:02:35 +0000618 if (d_is_reg(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 map = nfs3_regaccess;
David Howellse36cb0b2015-01-29 12:02:35 +0000620 else if (d_is_dir(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 map = nfs3_diraccess;
622 else
623 map = nfs3_anyaccess;
624
625
626 query = *access;
627 for (; map->access; map++) {
628 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700629 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 sresult |= map->access;
632
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700633 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 switch (err2) {
635 case nfs_ok:
636 result |= map->access;
637 break;
638
639 /* the following error codes just mean the access was not allowed,
640 * rather than an error occurred */
641 case nfserr_rofs:
642 case nfserr_acces:
643 case nfserr_perm:
644 /* simply don't "or" in the access bit. */
645 break;
646 default:
647 error = err2;
648 goto out;
649 }
650 }
651 }
652 *access = result;
653 if (supported)
654 *supported = sresult;
655
656 out:
657 return error;
658}
659#endif /* CONFIG_NFSD_V3 */
660
J. Bruce Fields105f4622011-06-07 11:50:23 -0400661static int nfsd_open_break_lease(struct inode *inode, int access)
662{
663 unsigned int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
J. Bruce Fields105f4622011-06-07 11:50:23 -0400665 if (access & NFSD_MAY_NOT_BREAK_LEASE)
666 return 0;
667 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
668 return break_lease(inode, mode | O_NONBLOCK);
669}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671/*
672 * Open an existing file or directory.
Bernd Schubert999448a2012-03-18 22:44:49 -0400673 * The may_flags argument indicates the type of open (read/write/lock)
674 * and additional flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * N.B. After this call fhp needs an fh_put
676 */
Al Viro6264d692006-10-19 23:28:58 -0700677__be32
Al Viro175a4eb2011-07-26 03:30:54 -0400678nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
Bernd Schubert999448a2012-03-18 22:44:49 -0400679 int may_flags, struct file **filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Al Viro765927b2012-06-26 21:58:53 +0400681 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct inode *inode;
Kinglong Mee8519f992014-09-03 08:14:06 +0800683 struct file *file;
Al Viro6264d692006-10-19 23:28:58 -0700684 int flags = O_RDONLY|O_LARGEFILE;
685 __be32 err;
Jeff Layton91885252010-03-19 08:06:28 -0400686 int host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
David Howellse0e81732009-09-02 09:13:40 +0100688 validate_process_creds();
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /*
691 * If we get here, then the client has already done an "open",
692 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
693 * in case a chmod has now revoked permission.
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400694 *
695 * Arguably we should also allow the owner override for
696 * directories, but we never have and it doesn't seem to have
697 * caused anyone a problem. If we were to change this, note
698 * also that our filldir callbacks would need a variant of
699 * lookup_one_len that doesn't check permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400701 if (type == S_IFREG)
702 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
703 err = fh_verify(rqstp, fhp, type, may_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (err)
705 goto out;
706
Al Viro765927b2012-06-26 21:58:53 +0400707 path.mnt = fhp->fh_export->ex_path.mnt;
708 path.dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000709 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 /* Disallow write access to files with the append-only bit set
712 * or any access when mandatory locking enabled
713 */
714 err = nfserr_perm;
Bernd Schubert999448a2012-03-18 22:44:49 -0400715 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400717 /*
718 * We must ignore files (but only files) which might have mandatory
719 * locks on them because there is no way to know if the accesser has
720 * the lock.
721 */
722 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 goto out;
724
725 if (!inode->i_fop)
726 goto out;
727
Bernd Schubert999448a2012-03-18 22:44:49 -0400728 host_err = nfsd_open_break_lease(inode, may_flags);
Al Viro6264d692006-10-19 23:28:58 -0700729 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto out_nfserr;
731
Bernd Schubert999448a2012-03-18 22:44:49 -0400732 if (may_flags & NFSD_MAY_WRITE) {
733 if (may_flags & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700734 flags = O_RDWR|O_LARGEFILE;
735 else
736 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Bernd Schubert999448a2012-03-18 22:44:49 -0400738
Kinglong Mee8519f992014-09-03 08:14:06 +0800739 file = dentry_open(&path, flags, current_cred());
740 if (IS_ERR(file)) {
741 host_err = PTR_ERR(file);
742 goto out_nfserr;
Bernd Schubert06effdb2012-03-18 22:44:50 -0400743 }
744
Linus Torvalds5e40d332014-10-12 10:13:55 -0400745 host_err = ima_file_check(file, may_flags, 0);
Kinglong Mee8519f992014-09-03 08:14:06 +0800746 if (host_err) {
Christoph Hellwigfd891452015-04-28 15:41:16 +0200747 fput(file);
Kinglong Mee8519f992014-09-03 08:14:06 +0800748 goto out_nfserr;
749 }
750
751 if (may_flags & NFSD_MAY_64BIT_COOKIE)
752 file->f_mode |= FMODE_64BITHASH;
753 else
754 file->f_mode |= FMODE_32BITHASH;
755
756 *filp = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700758 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759out:
David Howellse0e81732009-09-02 09:13:40 +0100760 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return err;
762}
763
764/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * Obtain the readahead parameters for the file
766 * specified by (dev, ino).
767 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769static inline struct raparms *
770nfsd_get_raparms(dev_t dev, ino_t ino)
771{
772 struct raparms *ra, **rap, **frap = NULL;
773 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700774 unsigned int hash;
775 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Greg Banksfce14562006-10-04 02:15:49 -0700777 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
778 rab = &raparm_hash[hash];
779
780 spin_lock(&rab->pb_lock);
781 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (ra->p_ino == ino && ra->p_dev == dev)
783 goto found;
784 depth++;
785 if (ra->p_count == 0)
786 frap = rap;
787 }
Konstantin Khorenko3aa6e0a2011-02-01 17:16:29 +0300788 depth = nfsdstats.ra_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700790 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return NULL;
792 }
793 rap = frap;
794 ra = *frap;
795 ra->p_dev = dev;
796 ra->p_ino = ino;
797 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700798 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799found:
Greg Banksfce14562006-10-04 02:15:49 -0700800 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700802 ra->p_next = rab->pb_head;
803 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805 ra->p_count++;
806 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700807 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return ra;
809}
810
811/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200812 * Grab and keep cached pages associated with a file in the svc_rqst
813 * so that they can be passed to the network sendmsg/sendpage routines
814 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 */
816static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200817nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
818 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Jens Axboecf8208d2007-06-12 21:22:14 +0200820 struct svc_rqst *rqstp = sd->u.data;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500821 struct page **pp = rqstp->rq_next_page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200822 struct page *page = buf->page;
823 size_t size;
Jens Axboecf8208d2007-06-12 21:22:14 +0200824
825 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 if (rqstp->rq_res.page_len == 0) {
828 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500829 put_page(*rqstp->rq_next_page);
830 *(rqstp->rq_next_page++) = page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200831 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700833 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500835 if (*rqstp->rq_next_page)
836 put_page(*rqstp->rq_next_page);
837 *(rqstp->rq_next_page++) = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700839 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return size;
843}
844
Jens Axboecf8208d2007-06-12 21:22:14 +0200845static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
846 struct splice_desc *sd)
847{
848 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
849}
850
Jeff Laytone2afc812014-06-17 07:44:13 -0400851static __be32
852nfsd_finish_read(struct file *file, unsigned long *count, int host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Al Viro6264d692006-10-19 23:28:58 -0700854 if (host_err >= 0) {
855 nfsdstats.io_read += host_err;
856 *count = host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500857 fsnotify_access(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 } else
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400860 return nfserrno(host_err);
861}
862
Jeff Laytone2afc812014-06-17 07:44:13 -0400863__be32 nfsd_splice_read(struct svc_rqst *rqstp,
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400864 struct file *file, loff_t offset, unsigned long *count)
865{
866 struct splice_desc sd = {
867 .len = 0,
868 .total_len = *count,
869 .pos = offset,
870 .u.data = rqstp,
871 };
872 int host_err;
873
874 rqstp->rq_next_page = rqstp->rq_respages + 1;
875 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
876 return nfsd_finish_read(file, count, host_err);
877}
878
Jeff Laytone2afc812014-06-17 07:44:13 -0400879__be32 nfsd_readv(struct file *file, loff_t offset, struct kvec *vec, int vlen,
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400880 unsigned long *count)
881{
882 mm_segment_t oldfs;
883 int host_err;
884
885 oldfs = get_fs();
886 set_fs(KERNEL_DS);
887 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
888 set_fs(oldfs);
889 return nfsd_finish_read(file, count, host_err);
890}
891
892static __be32
893nfsd_vfs_read(struct svc_rqst *rqstp, struct file *file,
894 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
895{
Jeff Layton779fb0f2014-11-19 07:51:18 -0500896 if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags))
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400897 return nfsd_splice_read(rqstp, file, offset, count);
898 else
899 return nfsd_readv(file, offset, vec, vlen, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700902/*
903 * Gathered writes: If another process is currently writing to the file,
904 * there's a high chance this is another nfsd (triggered by a bulk write
905 * from a client's biod). Rather than syncing the file with each write
906 * request, we sleep for 10 msec.
907 *
908 * I don't know if this roughly approximates C. Juszak's idea of
909 * gathered writes, but it's a nice and simple solution (IMHO), and it
910 * seems to work:-)
911 *
912 * Note: we do this only in the NFSv2 case, since v3 and higher have a
913 * better tool (separate unstable writes and commits) for solving this
914 * problem.
915 */
916static int wait_for_concurrent_writes(struct file *file)
917{
Al Viro496ad9a2013-01-23 17:07:38 -0500918 struct inode *inode = file_inode(file);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700919 static ino_t last_ino;
920 static dev_t last_dev;
921 int err = 0;
922
923 if (atomic_read(&inode->i_writecount) > 1
924 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
925 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
926 msleep(10);
927 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
928 }
929
930 if (inode->i_state & I_DIRTY) {
931 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100932 err = vfs_fsync(file, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700933 }
934 last_ino = inode->i_ino;
935 last_dev = inode->i_sb->s_dev;
936 return err;
937}
938
Al Viro6264d692006-10-19 23:28:58 -0700939static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
941 loff_t offset, struct kvec *vec, int vlen,
David Shaw31dec252009-03-05 20:16:14 -0500942 unsigned long *cnt, int *stablep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 struct svc_export *exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 struct inode *inode;
946 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700947 __be32 err = 0;
948 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 int stable = *stablep;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400950 int use_wgather;
Kent Overstreete49dbbf2013-03-22 11:18:24 -0700951 loff_t pos = offset;
Zach Browne77a7b42014-10-06 16:42:52 -0700952 loff_t end = LLONG_MAX;
NeilBrown86584522014-05-12 11:22:47 +1000953 unsigned int pflags = current->flags;
954
Jeff Layton7501cc22014-11-19 07:51:15 -0500955 if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
NeilBrown86584522014-05-12 11:22:47 +1000956 /*
957 * We want less throttling in balance_dirty_pages()
958 * and shrink_inactive_list() so that nfs to
959 * localhost doesn't cause nfsd to lock up due to all
960 * the client's dirty pages or its congested queue.
961 */
962 current->flags |= PF_LESS_THROTTLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Al Viro6f4e0d52014-10-31 02:42:53 -0400964 inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 exp = fhp->fh_export;
966
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400967 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (!EX_ISSYNC(exp))
970 stable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /* Write the data. */
973 oldfs = get_fs(); set_fs(KERNEL_DS);
Kent Overstreete49dbbf2013-03-22 11:18:24 -0700974 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -0700976 if (host_err < 0)
977 goto out_nfserr;
978 *cnt = host_err;
979 nfsdstats.io_write += host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500980 fsnotify_modify(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
J. Bruce Fieldsface1502012-10-26 16:12:31 -0400982 if (stable) {
Zach Browne77a7b42014-10-06 16:42:52 -0700983 if (use_wgather) {
J. Bruce Fieldsface1502012-10-26 16:12:31 -0400984 host_err = wait_for_concurrent_writes(file);
Zach Browne77a7b42014-10-06 16:42:52 -0700985 } else {
986 if (*cnt)
987 end = offset + *cnt - 1;
988 host_err = vfs_fsync_range(file, offset, end, 0);
989 }
J. Bruce Fieldsface1502012-10-26 16:12:31 -0400990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
J. Bruce Fieldse4636d52009-06-15 19:07:13 -0700992out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700993 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +0800994 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +0800996 else
Al Viro6264d692006-10-19 23:28:58 -0700997 err = nfserrno(host_err);
Jeff Layton7501cc22014-11-19 07:51:15 -0500998 if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
NeilBrown86584522014-05-12 11:22:47 +1000999 tsk_restore_flags(current, pflags, PF_LESS_THROTTLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return err;
1001}
1002
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001003__be32 nfsd_get_tmp_read_open(struct svc_rqst *rqstp, struct svc_fh *fhp,
1004 struct file **file, struct raparms **ra)
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001005{
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001006 struct inode *inode;
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001007 __be32 err;
1008
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001009 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, file);
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001010 if (err)
1011 return err;
1012
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001013 inode = file_inode(*file);
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001014
1015 /* Get readahead parameters */
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001016 *ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001017
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001018 if (*ra && (*ra)->p_set)
1019 (*file)->f_ra = (*ra)->p_ra;
1020 return nfs_ok;
1021}
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001022
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001023void nfsd_put_tmp_read_open(struct file *file, struct raparms *ra)
1024{
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001025 /* Write back readahead params */
1026 if (ra) {
1027 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
1028 spin_lock(&rab->pb_lock);
1029 ra->p_ra = file->f_ra;
1030 ra->p_set = 1;
1031 ra->p_count--;
1032 spin_unlock(&rab->pb_lock);
1033 }
Christoph Hellwigfd891452015-04-28 15:41:16 +02001034 fput(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001035}
1036
1037/*
1038 * Read data from a file. count must contain the requested read count
1039 * on entry. On return, *count contains the number of bytes actually read.
1040 * N.B. After this call fhp needs an fh_put
1041 */
1042__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
1043 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
1044{
1045 struct file *file;
1046 struct raparms *ra;
1047 __be32 err;
1048
1049 err = nfsd_get_tmp_read_open(rqstp, fhp, &file, &ra);
1050 if (err)
1051 return err;
1052
1053 err = nfsd_vfs_read(rqstp, file, offset, vec, vlen, count);
1054
1055 nfsd_put_tmp_read_open(file, ra);
1056
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001057 return err;
1058}
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060/*
1061 * Write data to a file.
1062 * The stable flag requests synchronous writes.
1063 * N.B. After this call fhp needs an fh_put
1064 */
Al Viro6264d692006-10-19 23:28:58 -07001065__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
David Shaw31dec252009-03-05 20:16:14 -05001067 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 int *stablep)
1069{
Al Viro6264d692006-10-19 23:28:58 -07001070 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001073 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001074 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (err)
1076 goto out;
1077 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1078 stablep);
1079 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001080 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (err)
1082 goto out;
1083
1084 if (cnt)
1085 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1086 cnt, stablep);
Christoph Hellwigfd891452015-04-28 15:41:16 +02001087 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089out:
1090 return err;
1091}
1092
1093#ifdef CONFIG_NFSD_V3
1094/*
1095 * Commit all pending writes to stable storage.
Trond Myklebustaa696a62010-01-29 16:44:25 -05001096 *
1097 * Note: we only guarantee that data that lies within the range specified
1098 * by the 'offset' and 'count' parameters will be synced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 *
1100 * Unfortunately we cannot lock the file to make sure we return full WCC
1101 * data to the client, as locking happens lower down in the filesystem.
1102 */
Al Viro6264d692006-10-19 23:28:58 -07001103__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1105 loff_t offset, unsigned long count)
1106{
1107 struct file *file;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001108 loff_t end = LLONG_MAX;
1109 __be32 err = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Trond Myklebustaa696a62010-01-29 16:44:25 -05001111 if (offset < 0)
1112 goto out;
1113 if (count != 0) {
1114 end = offset + (loff_t)count - 1;
1115 if (end < offset)
1116 goto out;
1117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Jeff Layton91885252010-03-19 08:06:28 -04001119 err = nfsd_open(rqstp, fhp, S_IFREG,
1120 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001121 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001122 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 if (EX_ISSYNC(fhp->fh_export)) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001124 int err2 = vfs_fsync_range(file, offset, end, 0);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001125
1126 if (err2 != -EINVAL)
1127 err = nfserrno(err2);
1128 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 err = nfserr_notsupp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131
Christoph Hellwigfd891452015-04-28 15:41:16 +02001132 fput(file);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001133out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return err;
1135}
1136#endif /* CONFIG_NFSD_V3 */
1137
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001138static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001139nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1140 struct iattr *iap)
1141{
1142 /*
1143 * Mode has already been set earlier in create:
1144 */
1145 iap->ia_valid &= ~ATTR_MODE;
1146 /*
1147 * Setting uid/gid works only for root. Irix appears to
1148 * send along the gid on create when it tries to implement
1149 * setgid directories via NFS:
1150 */
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001151 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001152 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1153 if (iap->ia_valid)
1154 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001155 /* Callers expect file metadata to be committed here */
Jeff Layton722b6202014-07-03 07:54:19 -04001156 return nfserrno(commit_metadata(resfhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001157}
1158
wengang wang4ac35c22009-02-10 11:27:51 +08001159/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1160 * setting size to 0 may fail for some specific file systems by the permission
1161 * checking which requires WRITE permission but the mode is 000.
1162 * we ignore the resizing(to 0) on the just new created file, since the size is
1163 * 0 after file created.
1164 *
1165 * call this only after vfs_create() is called.
1166 * */
1167static void
1168nfsd_check_ignore_resizing(struct iattr *iap)
1169{
1170 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1171 iap->ia_valid &= ~ATTR_SIZE;
1172}
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174/*
1175 * Create a file (regular, directory, device, fifo); UNIX sockets
1176 * not yet implemented.
1177 * If the response fh has been verified, the parent directory should
1178 * already be locked. Note that the parent directory is left locked.
1179 *
1180 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1181 */
Al Viro6264d692006-10-19 23:28:58 -07001182__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1184 char *fname, int flen, struct iattr *iap,
1185 int type, dev_t rdev, struct svc_fh *resfhp)
1186{
1187 struct dentry *dentry, *dchild = NULL;
1188 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001189 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001190 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001191 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 err = nfserr_perm;
1194 if (!flen)
1195 goto out;
1196 err = nfserr_exist;
1197 if (isdotent(fname, flen))
1198 goto out;
1199
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001200 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (err)
1202 goto out;
1203
1204 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001205 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001208 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 goto out;
1210 /*
1211 * Check whether the response file handle has been verified yet.
1212 * If it has, the parent directory should already be locked.
1213 */
1214 if (!resfhp->fh_dentry) {
Jan Kara4a55c102012-06-12 16:20:33 +02001215 host_err = fh_want_write(fhp);
1216 if (host_err)
1217 goto out_nfserr;
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001220 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001222 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (IS_ERR(dchild))
1224 goto out_nfserr;
1225 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1226 if (err)
1227 goto out;
1228 } else {
1229 /* called from nfsd_proc_create */
1230 dchild = dget(resfhp->fh_dentry);
1231 if (!fhp->fh_locked) {
1232 /* not actually possible */
1233 printk(KERN_ERR
Al Viroa6a9f182013-09-16 10:57:01 -04001234 "nfsd_create: parent %pd2 not locked!\n",
1235 dentry);
Al Virod75f2b92006-01-18 17:43:44 -08001236 err = nfserr_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 goto out;
1238 }
1239 }
1240 /*
1241 * Make sure the child dentry is still negative ...
1242 */
1243 err = nfserr_exist;
David Howells2b0143b2015-03-17 22:25:59 +00001244 if (d_really_is_positive(dchild)) {
Al Viroa6a9f182013-09-16 10:57:01 -04001245 dprintk("nfsd_create: dentry %pd/%pd not negative!\n",
1246 dentry, dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 goto out;
1248 }
1249
1250 if (!(iap->ia_valid & ATTR_MODE))
1251 iap->ia_mode = 0;
1252 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1253
Miklos Szeredi07cad1d2008-07-01 15:38:35 +02001254 err = nfserr_inval;
1255 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1256 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1257 type);
1258 goto out;
1259 }
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 /*
1262 * Get the dir op function pointer.
1263 */
J. Bruce Fields088406b2006-11-08 17:44:59 -08001264 err = 0;
Jan Kara4a55c102012-06-12 16:20:33 +02001265 host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 switch (type) {
1267 case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04001268 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
wengang wang4ac35c22009-02-10 11:27:51 +08001269 if (!host_err)
1270 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 break;
1272 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001273 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 break;
1275 case S_IFCHR:
1276 case S_IFBLK:
1277 case S_IFIFO:
1278 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001279 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 break;
Dave Hansen463c3192008-02-15 14:37:57 -08001281 }
Jan Kara4a55c102012-06-12 16:20:33 +02001282 if (host_err < 0)
Dave Hansen463c3192008-02-15 14:37:57 -08001283 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Ben Myersf5019122010-02-17 14:05:11 -06001285 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Ben Myersf5019122010-02-17 14:05:11 -06001287 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001288 * nfsd_create_setattr already committed the child. Transactional
1289 * filesystems had a chance to commit changes for both parent and
1290 * child * simultaneously making the following commit_metadata a
1291 * noop.
Ben Myersf5019122010-02-17 14:05:11 -06001292 */
1293 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001294 if (err2)
1295 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /*
1297 * Update the file handle to get the new inode info.
1298 */
1299 if (!err)
1300 err = fh_update(resfhp);
1301out:
1302 if (dchild && !IS_ERR(dchild))
1303 dput(dchild);
1304 return err;
1305
1306out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001307 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 goto out;
1309}
1310
1311#ifdef CONFIG_NFSD_V3
Mi Jinlongac6721a2011-04-20 17:06:25 +08001312
1313static inline int nfsd_create_is_exclusive(int createmode)
1314{
1315 return createmode == NFS3_CREATE_EXCLUSIVE
1316 || createmode == NFS4_CREATE_EXCLUSIVE4_1;
1317}
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319/*
Mi Jinlongac6721a2011-04-20 17:06:25 +08001320 * NFSv3 and NFSv4 version of nfsd_create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 */
Al Viro6264d692006-10-19 23:28:58 -07001322__be32
Mi Jinlongac6721a2011-04-20 17:06:25 +08001323do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 char *fname, int flen, struct iattr *iap,
1325 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields856121b2011-10-13 11:37:11 -04001326 bool *truncp, bool *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 struct dentry *dentry, *dchild = NULL;
1329 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001330 __be32 err;
1331 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 err = nfserr_perm;
1335 if (!flen)
1336 goto out;
1337 err = nfserr_exist;
1338 if (isdotent(fname, flen))
1339 goto out;
1340 if (!(iap->ia_valid & ATTR_MODE))
1341 iap->ia_mode = 0;
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001342 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (err)
1344 goto out;
1345
1346 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001347 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 /* Get all the sanity checks out of the way before
1350 * we lock the parent. */
1351 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001352 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001354
1355 host_err = fh_want_write(fhp);
1356 if (host_err)
1357 goto out_nfserr;
1358
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001359 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 /*
1362 * Compose the response file handle.
1363 */
1364 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001365 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (IS_ERR(dchild))
1367 goto out_nfserr;
1368
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001369 /* If file doesn't exist, check for permissions to create one */
David Howells2b0143b2015-03-17 22:25:59 +00001370 if (d_really_is_negative(dchild)) {
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001371 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1372 if (err)
1373 goto out;
1374 }
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1377 if (err)
1378 goto out;
1379
Mi Jinlongac6721a2011-04-20 17:06:25 +08001380 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001381 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001382 * the high bit set, so just clear the high bits. If this is
1383 * ever changed to use different attrs for storing the
1384 * verifier, then do_open_lookup() will also need to be fixed
1385 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 */
1387 v_mtime = verifier[0]&0x7fffffff;
1388 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
1390
David Howells2b0143b2015-03-17 22:25:59 +00001391 if (d_really_is_positive(dchild)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 err = 0;
1393
1394 switch (createmode) {
1395 case NFS3_CREATE_UNCHECKED:
David Howellse36cb0b2015-01-29 12:02:35 +00001396 if (! d_is_reg(dchild))
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -04001397 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 else if (truncp) {
1399 /* in nfsv4, we need to treat this case a little
1400 * differently. we don't want to truncate the
1401 * file now; this would be wrong if the OPEN
1402 * fails for some other reason. furthermore,
1403 * if the size is nonzero, we should ignore it
1404 * according to spec!
1405 */
1406 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1407 }
1408 else {
1409 iap->ia_valid &= ATTR_SIZE;
1410 goto set_attr;
1411 }
1412 break;
1413 case NFS3_CREATE_EXCLUSIVE:
David Howells2b0143b2015-03-17 22:25:59 +00001414 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1415 && d_inode(dchild)->i_atime.tv_sec == v_atime
1416 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001417 if (created)
1418 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 break;
Neil Brown7007c902012-12-07 15:40:55 -05001420 }
Mi Jinlongac6721a2011-04-20 17:06:25 +08001421 case NFS4_CREATE_EXCLUSIVE4_1:
David Howells2b0143b2015-03-17 22:25:59 +00001422 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1423 && d_inode(dchild)->i_atime.tv_sec == v_atime
1424 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001425 if (created)
1426 *created = 1;
Mi Jinlongac6721a2011-04-20 17:06:25 +08001427 goto set_attr;
Neil Brown7007c902012-12-07 15:40:55 -05001428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 /* fallthru */
1430 case NFS3_CREATE_GUARDED:
1431 err = nfserr_exist;
1432 }
Al Virobad0dcf2011-11-23 12:03:18 -05001433 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 goto out;
1435 }
1436
Al Viro312b63f2012-06-10 18:09:36 -04001437 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
Dave Hansen463c3192008-02-15 14:37:57 -08001438 if (host_err < 0) {
Al Virobad0dcf2011-11-23 12:03:18 -05001439 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001441 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001442 if (created)
1443 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
wengang wang4ac35c22009-02-10 11:27:51 +08001445 nfsd_check_ignore_resizing(iap);
1446
Mi Jinlongac6721a2011-04-20 17:06:25 +08001447 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001448 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001450 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 /* XXX someone who knows this better please fix it for nsec */
1452 iap->ia_mtime.tv_sec = v_mtime;
1453 iap->ia_atime.tv_sec = v_atime;
1454 iap->ia_mtime.tv_nsec = 0;
1455 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001459 err = nfsd_create_setattr(rqstp, resfhp, iap);
1460
1461 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001462 * nfsd_create_setattr already committed the child
1463 * (and possibly also the parent).
Ben Myersf5019122010-02-17 14:05:11 -06001464 */
1465 if (!err)
1466 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001467
1468 /*
1469 * Update the filehandle to get the new inode info.
1470 */
1471 if (!err)
1472 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 out:
1475 fh_unlock(fhp);
1476 if (dchild && !IS_ERR(dchild))
1477 dput(dchild);
Jan Kara4a55c102012-06-12 16:20:33 +02001478 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return err;
1480
1481 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001482 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 goto out;
1484}
1485#endif /* CONFIG_NFSD_V3 */
1486
1487/*
1488 * Read a symlink. On entry, *lenp must contain the maximum path length that
1489 * fits into the buffer. On return, it contains the true length.
1490 * N.B. After this call fhp needs an fh_put
1491 */
Al Viro6264d692006-10-19 23:28:58 -07001492__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1494{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 struct inode *inode;
1496 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001497 __be32 err;
1498 int host_err;
Al Viro68ac1232012-03-15 08:21:57 -04001499 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001501 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (err)
1503 goto out;
1504
Al Viro68ac1232012-03-15 08:21:57 -04001505 path.mnt = fhp->fh_export->ex_path.mnt;
1506 path.dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001507 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 err = nfserr_inval;
Al Viroacfa4382008-12-04 10:06:33 -05001510 if (!inode->i_op->readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 goto out;
1512
Al Viro68ac1232012-03-15 08:21:57 -04001513 touch_atime(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 /* N.B. Why does this call need a get_fs()??
1515 * Remove the set_fs and watch the fireworks:-) --okir
1516 */
1517
1518 oldfs = get_fs(); set_fs(KERNEL_DS);
J. Bruce Fieldsfac7a172012-07-27 14:16:55 -04001519 host_err = inode->i_op->readlink(path.dentry, (char __user *)buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 set_fs(oldfs);
1521
Al Viro6264d692006-10-19 23:28:58 -07001522 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001524 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 err = 0;
1526out:
1527 return err;
1528
1529out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001530 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 goto out;
1532}
1533
1534/*
1535 * Create a symlink and look up its inode
1536 * N.B. After this call _both_ fhp and resfhp need an fh_put
1537 */
Al Viro6264d692006-10-19 23:28:58 -07001538__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1540 char *fname, int flen,
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001541 char *path,
Kinglong Mee1e444f52014-07-01 17:48:02 +08001542 struct svc_fh *resfhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001545 __be32 err, cerr;
1546 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 err = nfserr_noent;
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001549 if (!flen || path[0] == '\0')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 goto out;
1551 err = nfserr_exist;
1552 if (isdotent(fname, flen))
1553 goto out;
1554
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001555 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 if (err)
1557 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001558
1559 host_err = fh_want_write(fhp);
1560 if (host_err)
1561 goto out_nfserr;
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 fh_lock(fhp);
1564 dentry = fhp->fh_dentry;
1565 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001566 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (IS_ERR(dnew))
1568 goto out_nfserr;
1569
David Howells2b0143b2015-03-17 22:25:59 +00001570 host_err = vfs_symlink(d_inode(dentry), dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001571 err = nfserrno(host_err);
Ben Myersf5019122010-02-17 14:05:11 -06001572 if (!err)
1573 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 fh_unlock(fhp);
1575
Al Virobad0dcf2011-11-23 12:03:18 -05001576 fh_drop_write(fhp);
Dave Hansen75c3f292008-02-15 14:37:45 -08001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1579 dput(dnew);
1580 if (err==0) err = cerr;
1581out:
1582 return err;
1583
1584out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001585 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 goto out;
1587}
1588
1589/*
1590 * Create a hardlink
1591 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1592 */
Al Viro6264d692006-10-19 23:28:58 -07001593__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1595 char *name, int len, struct svc_fh *tfhp)
1596{
1597 struct dentry *ddir, *dnew, *dold;
J. Bruce Fields55b13352010-07-19 16:38:24 -04001598 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001599 __be32 err;
1600 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001602 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (err)
1604 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001605 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (err)
1607 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001608 err = nfserr_isdir;
David Howellse36cb0b2015-01-29 12:02:35 +00001609 if (d_is_dir(tfhp->fh_dentry))
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001610 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 err = nfserr_perm;
1612 if (!len)
1613 goto out;
1614 err = nfserr_exist;
1615 if (isdotent(name, len))
1616 goto out;
1617
Jan Kara4a55c102012-06-12 16:20:33 +02001618 host_err = fh_want_write(tfhp);
1619 if (host_err) {
1620 err = nfserrno(host_err);
1621 goto out;
1622 }
1623
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001624 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 ddir = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001626 dirp = d_inode(ddir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001629 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (IS_ERR(dnew))
1631 goto out_nfserr;
1632
1633 dold = tfhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001635 err = nfserr_noent;
David Howells2b0143b2015-03-17 22:25:59 +00001636 if (d_really_is_negative(dold))
Jan Kara4a55c102012-06-12 16:20:33 +02001637 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04001638 host_err = vfs_link(dold, dirp, dnew, NULL);
Al Viro6264d692006-10-19 23:28:58 -07001639 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001640 err = nfserrno(commit_metadata(ffhp));
1641 if (!err)
1642 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 } else {
Al Viro6264d692006-10-19 23:28:58 -07001644 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 err = nfserr_acces;
1646 else
Al Viro6264d692006-10-19 23:28:58 -07001647 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001649out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001651out_unlock:
1652 fh_unlock(ffhp);
Jan Kara4a55c102012-06-12 16:20:33 +02001653 fh_drop_write(tfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654out:
1655 return err;
1656
1657out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001658 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001659 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
1662/*
1663 * Rename a file
1664 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1665 */
Al Viro6264d692006-10-19 23:28:58 -07001666__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1668 struct svc_fh *tfhp, char *tname, int tlen)
1669{
1670 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1671 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001672 __be32 err;
1673 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001675 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (err)
1677 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001678 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (err)
1680 goto out;
1681
1682 fdentry = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001683 fdir = d_inode(fdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 tdentry = tfhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001686 tdir = d_inode(tdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 err = nfserr_perm;
1689 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1690 goto out;
1691
Jan Kara4a55c102012-06-12 16:20:33 +02001692 host_err = fh_want_write(ffhp);
1693 if (host_err) {
1694 err = nfserrno(host_err);
1695 goto out;
1696 }
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 /* cannot use fh_lock as we need deadlock protective ordering
1699 * so do it by hand */
1700 trap = lock_rename(tdentry, fdentry);
1701 ffhp->fh_locked = tfhp->fh_locked = 1;
1702 fill_pre_wcc(ffhp);
1703 fill_pre_wcc(tfhp);
1704
1705 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001706 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (IS_ERR(odentry))
1708 goto out_nfserr;
1709
Al Viro6264d692006-10-19 23:28:58 -07001710 host_err = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00001711 if (d_really_is_negative(odentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001713 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (odentry == trap)
1715 goto out_dput_old;
1716
1717 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001718 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (IS_ERR(ndentry))
1720 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001721 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (ndentry == trap)
1723 goto out_dput_new;
1724
Dave Hansen9079b1e2008-02-15 14:37:49 -08001725 host_err = -EXDEV;
1726 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1727 goto out_dput_new;
J. Bruce Fieldsaa387d6c2013-04-15 16:03:46 -04001728 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1729 goto out_dput_new;
Dave Hansen9079b1e2008-02-15 14:37:49 -08001730
Miklos Szeredi520c8b12014-04-01 17:08:42 +02001731 host_err = vfs_rename(fdir, odentry, tdir, ndentry, NULL, 0);
Ben Myersf5019122010-02-17 14:05:11 -06001732 if (!host_err) {
1733 host_err = commit_metadata(tfhp);
Al Viro6264d692006-10-19 23:28:58 -07001734 if (!host_err)
Ben Myersf5019122010-02-17 14:05:11 -06001735 host_err = commit_metadata(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 out_dput_new:
1738 dput(ndentry);
1739 out_dput_old:
1740 dput(odentry);
1741 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001742 err = nfserrno(host_err);
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001743 /*
1744 * We cannot rely on fh_unlock on the two filehandles,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 * as that would do the wrong thing if the two directories
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001746 * were the same, so again we do it by hand.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
1748 fill_post_wcc(ffhp);
1749 fill_post_wcc(tfhp);
1750 unlock_rename(tdentry, fdentry);
1751 ffhp->fh_locked = tfhp->fh_locked = 0;
Jan Kara4a55c102012-06-12 16:20:33 +02001752 fh_drop_write(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754out:
1755 return err;
1756}
1757
1758/*
1759 * Unlink a file or directory
1760 * N.B. After this call fhp needs an fh_put
1761 */
Al Viro6264d692006-10-19 23:28:58 -07001762__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1764 char *fname, int flen)
1765{
1766 struct dentry *dentry, *rdentry;
1767 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001768 __be32 err;
1769 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 err = nfserr_acces;
1772 if (!flen || isdotent(fname, flen))
1773 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001774 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 if (err)
1776 goto out;
1777
Jan Kara4a55c102012-06-12 16:20:33 +02001778 host_err = fh_want_write(fhp);
1779 if (host_err)
1780 goto out_nfserr;
1781
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001782 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001784 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
1786 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001787 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 if (IS_ERR(rdentry))
1789 goto out_nfserr;
1790
David Howells2b0143b2015-03-17 22:25:59 +00001791 if (d_really_is_negative(rdentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 dput(rdentry);
1793 err = nfserr_noent;
1794 goto out;
1795 }
1796
1797 if (!type)
David Howells2b0143b2015-03-17 22:25:59 +00001798 type = d_inode(rdentry)->i_mode & S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001800 if (type != S_IFDIR)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04001801 host_err = vfs_unlink(dirp, rdentry, NULL);
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001802 else
Al Viro6264d692006-10-19 23:28:58 -07001803 host_err = vfs_rmdir(dirp, rdentry);
J. Bruce Fields541ce982011-01-14 20:00:02 -05001804 if (!host_err)
1805 host_err = commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 dput(rdentry);
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001809 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001810out:
1811 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
1814/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001815 * We do this buffering because we must not call back into the file
1816 * system's ->lookup() method from the filldir callback. That may well
1817 * deadlock a number of file systems.
1818 *
1819 * This is based heavily on the implementation of same in XFS.
1820 */
1821struct buffered_dirent {
1822 u64 ino;
1823 loff_t offset;
1824 int namlen;
1825 unsigned int d_type;
1826 char name[];
1827};
1828
1829struct readdir_data {
Al Viro5c0ba4e2013-05-15 13:52:59 -04001830 struct dir_context ctx;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001831 char *dirent;
1832 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001833 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001834};
1835
Miklos Szerediac7576f2014-10-30 17:37:34 +01001836static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1837 int namlen, loff_t offset, u64 ino,
1838 unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001839{
Miklos Szerediac7576f2014-10-30 17:37:34 +01001840 struct readdir_data *buf =
1841 container_of(ctx, struct readdir_data, ctx);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001842 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1843 unsigned int reclen;
1844
1845 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001846 if (buf->used + reclen > PAGE_SIZE) {
1847 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001848 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001849 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001850
1851 de->namlen = namlen;
1852 de->offset = offset;
1853 de->ino = ino;
1854 de->d_type = d_type;
1855 memcpy(de->name, name, namlen);
1856 buf->used += reclen;
1857
1858 return 0;
1859}
1860
Miklos Szerediac7576f2014-10-30 17:37:34 +01001861static __be32 nfsd_buffered_readdir(struct file *file, nfsd_filldir_t func,
David Woodhouse2f9092e2009-04-20 23:18:37 +01001862 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001863{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001864 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001865 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001866 int size;
1867 loff_t offset;
Al Viroac6614b2013-05-22 22:22:04 -04001868 struct readdir_data buf = {
1869 .ctx.actor = nfsd_buffered_filldir,
1870 .dirent = (void *)__get_free_page(GFP_KERNEL)
1871 };
David Woodhouse2628b762008-07-31 17:16:51 +01001872
David Woodhouse14f7dd62008-07-31 20:29:12 +01001873 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001874 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001875
David Woodhouse14f7dd62008-07-31 20:29:12 +01001876 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001877
1878 while (1) {
Al Viro496ad9a2013-01-23 17:07:38 -05001879 struct inode *dir_inode = file_inode(file);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001880 unsigned int reclen;
1881
Doug Nazarb726e922008-11-05 06:16:28 -05001882 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001883 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001884 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001885
Al Viro5c0ba4e2013-05-15 13:52:59 -04001886 host_err = iterate_dir(file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -04001887 if (buf.full)
1888 host_err = 0;
1889
1890 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001891 break;
1892
1893 size = buf.used;
1894
1895 if (!size)
1896 break;
1897
David Woodhouse2f9092e2009-04-20 23:18:37 +01001898 /*
1899 * Various filldir functions may end up calling back into
1900 * lookup_one_len() and the file system's ->lookup() method.
1901 * These expect i_mutex to be held, as it would within readdir.
1902 */
1903 host_err = mutex_lock_killable(&dir_inode->i_mutex);
1904 if (host_err)
1905 break;
1906
David Woodhouse14f7dd62008-07-31 20:29:12 +01001907 de = (struct buffered_dirent *)buf.dirent;
1908 while (size > 0) {
1909 offset = de->offset;
1910
1911 if (func(cdp, de->name, de->namlen, de->offset,
1912 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01001913 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001914
1915 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001916 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001917
1918 reclen = ALIGN(sizeof(*de) + de->namlen,
1919 sizeof(u64));
1920 size -= reclen;
1921 de = (struct buffered_dirent *)((char *)de + reclen);
1922 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01001923 mutex_unlock(&dir_inode->i_mutex);
1924 if (size > 0) /* We bailed out early */
1925 break;
1926
David Woodhousec002a6c2008-08-17 17:21:18 +01001927 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001928 }
1929
David Woodhouse14f7dd62008-07-31 20:29:12 +01001930 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01001931
1932 if (host_err)
1933 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001934
1935 *offsetp = offset;
1936 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01001937}
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939/*
1940 * Read entries from a directory.
1941 * The NFSv3/4 verifier we ignore for now.
1942 */
Al Viro6264d692006-10-19 23:28:58 -07001943__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
Miklos Szerediac7576f2014-10-30 17:37:34 +01001945 struct readdir_cd *cdp, nfsd_filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
Al Viro6264d692006-10-19 23:28:58 -07001947 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 struct file *file;
1949 loff_t offset = *offsetp;
Bernd Schubert06effdb2012-03-18 22:44:50 -04001950 int may_flags = NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Bernd Schubert06effdb2012-03-18 22:44:50 -04001952 /* NFSv2 only supports 32 bit cookies */
1953 if (rqstp->rq_vers > 2)
1954 may_flags |= NFSD_MAY_64BIT_COOKIE;
1955
1956 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (err)
1958 goto out;
1959
Jeff Laytonb108fe62012-04-25 15:30:00 -04001960 offset = vfs_llseek(file, offset, SEEK_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (offset < 0) {
1962 err = nfserrno((int)offset);
1963 goto out_close;
1964 }
1965
David Woodhouse14f7dd62008-07-31 20:29:12 +01001966 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 if (err == nfserr_eof || err == nfserr_toosmall)
1969 err = nfs_ok; /* can still be found in ->err */
1970out_close:
Christoph Hellwigfd891452015-04-28 15:41:16 +02001971 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972out:
1973 return err;
1974}
1975
1976/*
1977 * Get file system stats
1978 * N.B. After this call fhp needs an fh_put
1979 */
Al Viro6264d692006-10-19 23:28:58 -07001980__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04001981nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001983 __be32 err;
1984
1985 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
Takashi Iwaif6360ef2010-08-13 15:53:49 +02001986 if (!err) {
1987 struct path path = {
1988 .mnt = fhp->fh_export->ex_path.mnt,
1989 .dentry = fhp->fh_dentry,
1990 };
1991 if (vfs_statfs(&path, stat))
1992 err = nfserr_io;
1993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return err;
1995}
1996
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001997static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07001998{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001999 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002000}
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002/*
2003 * Check for a user's access permissions to this inode.
2004 */
Al Viro6264d692006-10-19 23:28:58 -07002005__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07002006nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2007 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
David Howells2b0143b2015-03-17 22:25:59 +00002009 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 int err;
2011
J. Bruce Fieldsaea93392011-04-10 10:35:12 -04002012 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return 0;
2014#if 0
2015 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2016 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002017 (acc & NFSD_MAY_READ)? " read" : "",
2018 (acc & NFSD_MAY_WRITE)? " write" : "",
2019 (acc & NFSD_MAY_EXEC)? " exec" : "",
2020 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2021 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2022 (acc & NFSD_MAY_LOCK)? " lock" : "",
2023 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 inode->i_mode,
2025 IS_IMMUTABLE(inode)? " immut" : "",
2026 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08002027 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11002029 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030#endif
2031
2032 /* Normally we reject any write/sattr etc access on a read-only file
2033 * system. But if it is IRIX doing check on write-access for a
2034 * device special file, we ignore rofs.
2035 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002036 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2037 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08002038 if (exp_rdonly(rqstp, exp) ||
2039 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002041 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 return nfserr_perm;
2043 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002044 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return nfserr_perm;
2046
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002047 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 /* If we cannot rely on authentication in NLM requests,
2049 * just allow locks, otherwise require read permission, or
2050 * ownership
2051 */
2052 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2053 return 0;
2054 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002055 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 }
2057 /*
2058 * The file owner always gets access permission for accesses that
2059 * would normally be checked at open time. This is to make
2060 * file access work even when the client has done a fchmod(fd, 0).
2061 *
2062 * However, `cp foo bar' should fail nevertheless when bar is
2063 * readonly. A sensible way to do this might be to reject all
2064 * attempts to truncate a read-only file, because a creat() call
2065 * always implies file truncation.
2066 * ... but this isn't really fair. A process may reasonably call
2067 * ftruncate on an open file descriptor on a file with perm 000.
2068 * We must trust the client to do permission checking - using "ACCESS"
2069 * with NFSv3.
2070 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002071 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002072 uid_eq(inode->i_uid, current_fsuid()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return 0;
2074
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002075 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04002076 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 /* Allow read access to binaries even when mode 111 */
2079 if (err == -EACCES && S_ISREG(inode->i_mode) &&
J. Bruce Fieldsa0432262011-08-25 10:48:39 -04002080 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2081 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
Al Virof419a2e2008-07-22 00:07:17 -04002082 err = inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 return err? nfserrno(err) : 0;
2085}
2086
2087void
2088nfsd_racache_shutdown(void)
2089{
Jeff Layton54a66e52008-08-13 22:03:27 -04002090 struct raparms *raparm, *last_raparm;
2091 unsigned int i;
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04002094
2095 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2096 raparm = raparm_hash[i].pb_head;
2097 while(raparm) {
2098 last_raparm = raparm;
2099 raparm = raparm->p_next;
2100 kfree(last_raparm);
2101 }
2102 raparm_hash[i].pb_head = NULL;
2103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
2105/*
2106 * Initialize readahead param cache
2107 */
2108int
2109nfsd_racache_init(int cache_size)
2110{
2111 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002112 int j = 0;
2113 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002114 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Greg Banksfce14562006-10-04 02:15:49 -07002116
Jeff Layton54a66e52008-08-13 22:03:27 -04002117 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002119 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002120 nperbucket = max(2, nperbucket);
Jeff Layton54a66e52008-08-13 22:03:27 -04002121 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002122
2123 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002124
2125 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002126 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002127
2128 raparm = &raparm_hash[i].pb_head;
2129 for (j = 0; j < nperbucket; j++) {
2130 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2131 if (!*raparm)
2132 goto out_nomem;
2133 raparm = &(*raparm)->p_next;
2134 }
2135 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002136 }
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 nfsdstats.ra_size = cache_size;
2139 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002140
2141out_nomem:
2142 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2143 nfsd_racache_shutdown();
2144 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145}