blob: a41302a00650ea274dc3605afefa4779baa9aa88 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/delay.h>
Robert Love0eeca282005-07-12 17:06:03 -040022#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/xattr.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020025#include <linux/jhash.h>
26#include <linux/ima.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020028#include <asm/uaccess.h>
Ben Myersf5019122010-02-17 14:05:11 -060029#include <linux/exportfs.h>
30#include <linux/writeback.h>
David Quigley18032ca2013-05-02 13:19:10 -040031#include <linux/security.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020032
33#ifdef CONFIG_NFSD_V3
34#include "xdr3.h"
35#endif /* CONFIG_NFSD_V3 */
36
Christoph Hellwig5be196e2006-01-09 20:51:55 -080037#ifdef CONFIG_NFSD_V4
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050038#include "acl.h"
39#include "idmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#endif /* CONFIG_NFSD_V4 */
41
Boaz Harrosh9a74af22009-12-03 20:30:56 +020042#include "nfsd.h"
43#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define NFSDDBG_FACILITY NFSDDBG_FILEOP
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * This is a cache of readahead params that help us choose the proper
50 * readahead strategy. Initially, we set all readahead parameters to 0
51 * and let the VFS handle things.
52 * If you increase the number of cached files very much, you'll need to
53 * add a hash table here.
54 */
55struct raparms {
56 struct raparms *p_next;
57 unsigned int p_count;
58 ino_t p_ino;
59 dev_t p_dev;
60 int p_set;
61 struct file_ra_state p_ra;
Greg Banksfce14562006-10-04 02:15:49 -070062 unsigned int p_hindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Greg Banksfce14562006-10-04 02:15:49 -070065struct raparm_hbucket {
66 struct raparms *pb_head;
67 spinlock_t pb_lock;
68} ____cacheline_aligned_in_smp;
69
Greg Banksfce14562006-10-04 02:15:49 -070070#define RAPARM_HASH_BITS 4
71#define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
72#define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
73static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
76 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
77 * a mount point.
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -080078 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * or nfs_ok having possibly changed *dpp and *expp
80 */
81int
82nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
83 struct svc_export **expp)
84{
85 struct svc_export *exp = *expp, *exp2 = NULL;
86 struct dentry *dentry = *dpp;
Al Viro91c9fa82009-04-18 02:42:05 -040087 struct path path = {.mnt = mntget(exp->ex_path.mnt),
88 .dentry = dget(dentry)};
Al Viro6264d692006-10-19 23:28:58 -070089 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Al Viro7cc90cc2011-03-18 09:04:20 -040091 err = follow_down(&path);
David Howellscc53ce52011-01-14 18:45:26 +000092 if (err < 0)
93 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Al Viro91c9fa82009-04-18 02:42:05 -040095 exp2 = rqst_exp_get_by_name(rqstp, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (IS_ERR(exp2)) {
J. Bruce Fields3b6cee7bc2009-10-25 21:18:19 -040097 err = PTR_ERR(exp2);
98 /*
99 * We normally allow NFS clients to continue
100 * "underneath" a mountpoint that is not exported.
101 * The exception is V4ROOT, where no traversal is ever
102 * allowed without an explicit export of the new
103 * directory.
104 */
105 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
106 err = 0;
Al Viro91c9fa82009-04-18 02:42:05 -0400107 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 goto out;
109 }
Steve Dickson3c394dd2009-09-09 15:02:40 -0400110 if (nfsd_v4client(rqstp) ||
111 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 /* successfully crossed mount point */
Al Viro1644ccc2009-04-18 02:32:31 -0400113 /*
Al Viro91c9fa82009-04-18 02:42:05 -0400114 * This is subtle: path.dentry is *not* on path.mnt
115 * at this point. The only reason we are safe is that
116 * original mnt is pinned down by exp, so we should
117 * put path *before* putting exp
Al Viro1644ccc2009-04-18 02:32:31 -0400118 */
Al Viro91c9fa82009-04-18 02:42:05 -0400119 *dpp = path.dentry;
120 path.dentry = dentry;
Al Viro1644ccc2009-04-18 02:32:31 -0400121 *expp = exp2;
Al Viro91c9fa82009-04-18 02:42:05 -0400122 exp2 = exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
Al Viro91c9fa82009-04-18 02:42:05 -0400124 path_put(&path);
125 exp_put(exp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126out:
127 return err;
128}
129
J. Bruce Fields289ede42009-09-26 20:32:24 -0400130static void follow_to_parent(struct path *path)
131{
132 struct dentry *dp;
133
134 while (path->dentry == path->mnt->mnt_root && follow_up(path))
135 ;
136 dp = dget_parent(path->dentry);
137 dput(path->dentry);
138 path->dentry = dp;
139}
140
141static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
142{
143 struct svc_export *exp2;
144 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
145 .dentry = dget(dparent)};
146
147 follow_to_parent(&path);
148
149 exp2 = rqst_exp_parent(rqstp, &path);
150 if (PTR_ERR(exp2) == -ENOENT) {
151 *dentryp = dget(dparent);
152 } else if (IS_ERR(exp2)) {
153 path_put(&path);
154 return PTR_ERR(exp2);
155 } else {
156 *dentryp = dget(path.dentry);
157 exp_put(*exp);
158 *exp = exp2;
159 }
160 path_put(&path);
161 return 0;
162}
163
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400164/*
165 * For nfsd purposes, we treat V4ROOT exports as though there was an
166 * export at *every* directory.
167 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -0400168int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400169{
170 if (d_mountpoint(dentry))
171 return 1;
Trond Myklebust11fcee022011-09-12 19:37:26 -0400172 if (nfsd4_is_junction(dentry))
173 return 1;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400174 if (!(exp->ex_flags & NFSEXP_V4ROOT))
175 return 0;
176 return dentry->d_inode != NULL;
177}
178
Al Viro6264d692006-10-19 23:28:58 -0700179__be32
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700180nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400181 const char *name, unsigned int len,
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700182 struct svc_export **exp_ret, struct dentry **dentry_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 struct svc_export *exp;
185 struct dentry *dparent;
186 struct dentry *dentry;
Al Viro6264d692006-10-19 23:28:58 -0700187 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 dparent = fhp->fh_dentry;
192 exp = fhp->fh_export;
193 exp_get(exp);
194
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);
273 if (!err && !dentry->d_inode)
274 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{
287 struct inode *inode = fhp->fh_dentry->d_inode;
288 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{
367 struct inode *inode = fhp->fh_dentry->d_inode;
368 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 int size_change = 0;
408
409 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200410 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (iap->ia_valid & ATTR_SIZE)
412 ftype = S_IFREG;
413
414 /* Get inode */
415 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800416 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 goto out;
418
419 dentry = fhp->fh_dentry;
420 inode = dentry->d_inode;
421
NeilBrown15b7a1b2005-11-07 01:00:23 -0800422 /* Ignore any mode updates on symlinks */
423 if (S_ISLNK(inode->i_mode))
424 iap->ia_valid &= ~ATTR_MODE;
425
426 if (!iap->ia_valid)
427 goto out;
428
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800429 nfsd_sanitize_attrs(inode, iap);
430
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000431 /*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800432 * The size case is special, it changes the file in addition to the
433 * attributes.
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (iap->ia_valid & ATTR_SIZE) {
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800436 err = nfsd_get_write_access(rqstp, fhp, iap);
437 if (err)
438 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 size_change = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 iap->ia_valid |= ATTR_CTIME;
443
Christoph Hellwig987da472013-11-18 05:07:47 -0800444 if (check_guard && guardtime != inode->i_ctime.tv_sec) {
445 err = nfserr_notsync;
446 goto out_put_write_access;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
Christoph Hellwig987da472013-11-18 05:07:47 -0800448
Christoph Hellwig987da472013-11-18 05:07:47 -0800449 fh_lock(fhp);
450 host_err = notify_change(dentry, iap, NULL);
451 fh_unlock(fhp);
452
Christoph Hellwig987da472013-11-18 05:07:47 -0800453out_put_write_access:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (size_change)
455 put_write_access(inode);
456 if (!err)
Christoph Hellwigb160fda2010-06-01 21:59:18 +0200457 commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458out:
459 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800462#if defined(CONFIG_NFSD_V2_ACL) || \
463 defined(CONFIG_NFSD_V3_ACL) || \
464 defined(CONFIG_NFSD_V4)
465static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
466{
467 ssize_t buflen;
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530468 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800470 buflen = vfs_getxattr(dentry, key, NULL, 0);
471 if (buflen <= 0)
472 return buflen;
473
474 *buf = kmalloc(buflen, GFP_KERNEL);
475 if (!*buf)
476 return -ENOMEM;
477
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530478 ret = vfs_getxattr(dentry, key, *buf, buflen);
479 if (ret < 0)
480 kfree(*buf);
481 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800482}
483#endif
484
485#if defined(CONFIG_NFSD_V4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486static int
487set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
488{
489 int len;
490 size_t buflen;
491 char *buf = NULL;
492 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 buflen = posix_acl_xattr_size(pacl->a_count);
495 buf = kmalloc(buflen, GFP_KERNEL);
496 error = -ENOMEM;
497 if (buf == NULL)
498 goto out;
499
Eric W. Biederman5f3a4a282012-09-10 20:17:44 -0700500 len = posix_acl_to_xattr(&init_user_ns, pacl, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (len < 0) {
502 error = len;
503 goto out;
504 }
505
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800506 error = vfs_setxattr(dentry, key, buf, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507out:
508 kfree(buf);
509 return error;
510}
511
Al Viro6264d692006-10-19 23:28:58 -0700512__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
514 struct nfs4_acl *acl)
515{
Al Viro6264d692006-10-19 23:28:58 -0700516 __be32 error;
517 int host_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 struct dentry *dentry;
519 struct inode *inode;
520 struct posix_acl *pacl = NULL, *dpacl = NULL;
521 unsigned int flags = 0;
522
523 /* Get inode */
J. Bruce Fieldse281d812011-08-15 16:57:07 -0400524 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_SATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (error)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700526 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 dentry = fhp->fh_dentry;
529 inode = dentry->d_inode;
530 if (S_ISDIR(inode->i_mode))
531 flags = NFS4_ACL_DIR;
532
Al Viro6264d692006-10-19 23:28:58 -0700533 host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
534 if (host_error == -EINVAL) {
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700535 return nfserr_attrnotsupp;
Al Viro6264d692006-10-19 23:28:58 -0700536 } else if (host_error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 goto out_nfserr;
538
Al Viro6264d692006-10-19 23:28:58 -0700539 host_error = set_nfsv4_acl_one(dentry, pacl, POSIX_ACL_XATTR_ACCESS);
540 if (host_error < 0)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700541 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700543 if (S_ISDIR(inode->i_mode))
Al Viro6264d692006-10-19 23:28:58 -0700544 host_error = set_nfsv4_acl_one(dentry, dpacl, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700546out_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 posix_acl_release(pacl);
548 posix_acl_release(dpacl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549out_nfserr:
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800550 if (host_error == -EOPNOTSUPP)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700551 return nfserr_attrnotsupp;
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800552 else
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700553 return nfserrno(host_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556static struct posix_acl *
557_get_posix_acl(struct dentry *dentry, char *key)
558{
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800559 void *buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct posix_acl *pacl = NULL;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800561 int buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800563 buflen = nfsd_getxattr(dentry, key, &buf);
564 if (!buflen)
565 buflen = -ENODATA;
566 if (buflen <= 0)
567 return ERR_PTR(buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Eric W. Biederman5f3a4a282012-09-10 20:17:44 -0700569 pacl = posix_acl_from_xattr(&init_user_ns, buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 kfree(buf);
571 return pacl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
574int
575nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
576{
577 struct inode *inode = dentry->d_inode;
578 int error = 0;
579 struct posix_acl *pacl = NULL, *dpacl = NULL;
580 unsigned int flags = 0;
581
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700582 pacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_ACCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
584 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
585 if (IS_ERR(pacl)) {
586 error = PTR_ERR(pacl);
587 pacl = NULL;
588 goto out;
589 }
590
591 if (S_ISDIR(inode->i_mode)) {
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700592 dpacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
594 dpacl = NULL;
595 else if (IS_ERR(dpacl)) {
596 error = PTR_ERR(dpacl);
597 dpacl = NULL;
598 goto out;
599 }
600 flags = NFS4_ACL_DIR;
601 }
602
603 *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
604 if (IS_ERR(*acl)) {
605 error = PTR_ERR(*acl);
606 *acl = NULL;
607 }
608 out:
609 posix_acl_release(pacl);
610 posix_acl_release(dpacl);
611 return error;
612}
613
Chuck Lever9b4146e2012-01-04 16:26:43 -0500614/*
615 * NFS junction information is stored in an extended attribute.
616 */
617#define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
618
619/**
620 * nfsd4_is_junction - Test if an object could be an NFS junction
621 *
622 * @dentry: object to test
623 *
624 * Returns 1 if "dentry" appears to contain NFS junction information.
625 * Otherwise 0 is returned.
626 */
Trond Myklebust11fcee022011-09-12 19:37:26 -0400627int nfsd4_is_junction(struct dentry *dentry)
628{
629 struct inode *inode = dentry->d_inode;
630
631 if (inode == NULL)
632 return 0;
633 if (inode->i_mode & S_IXUGO)
634 return 0;
635 if (!(inode->i_mode & S_ISVTX))
636 return 0;
Chuck Lever9b4146e2012-01-04 16:26:43 -0500637 if (vfs_getxattr(dentry, NFSD_JUNCTION_XATTR_NAME, NULL, 0) <= 0)
Trond Myklebust11fcee022011-09-12 19:37:26 -0400638 return 0;
639 return 1;
640}
David Quigley18032ca2013-05-02 13:19:10 -0400641#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
642__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
643 struct xdr_netobj *label)
644{
645 __be32 error;
646 int host_error;
647 struct dentry *dentry;
648
649 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
650 if (error)
651 return error;
652
653 dentry = fhp->fh_dentry;
654
655 mutex_lock(&dentry->d_inode->i_mutex);
656 host_error = security_inode_setsecctx(dentry, label->data, label->len);
657 mutex_unlock(&dentry->d_inode->i_mutex);
658 return nfserrno(host_error);
659}
660#else
661__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
662 struct xdr_netobj *label)
663{
664 return nfserr_notsupp;
665}
666#endif
667
J. Bruce Fields6a85d6c2010-07-06 12:39:12 -0400668#endif /* defined(CONFIG_NFSD_V4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670#ifdef CONFIG_NFSD_V3
671/*
672 * Check server access rights to a file system object
673 */
674struct accessmap {
675 u32 access;
676 int how;
677};
678static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200679 { NFS3_ACCESS_READ, NFSD_MAY_READ },
680 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
681 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
682 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 { 0, 0 }
685};
686
687static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200688 { NFS3_ACCESS_READ, NFSD_MAY_READ },
689 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
690 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
691 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
692 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 { 0, 0 }
695};
696
697static struct accessmap nfs3_anyaccess[] = {
698 /* Some clients - Solaris 2.6 at least, make an access call
699 * to the server to check for access for things like /dev/null
700 * (which really, the server doesn't care about). So
701 * We provide simple access checking for them, looking
702 * mainly at mode bits, and we make sure to ignore read-only
703 * filesystem checks
704 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200705 { NFS3_ACCESS_READ, NFSD_MAY_READ },
706 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
707 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
708 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 { 0, 0 }
711};
712
Al Viro6264d692006-10-19 23:28:58 -0700713__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
715{
716 struct accessmap *map;
717 struct svc_export *export;
718 struct dentry *dentry;
719 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700720 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200722 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (error)
724 goto out;
725
726 export = fhp->fh_export;
727 dentry = fhp->fh_dentry;
728
729 if (S_ISREG(dentry->d_inode->i_mode))
730 map = nfs3_regaccess;
731 else if (S_ISDIR(dentry->d_inode->i_mode))
732 map = nfs3_diraccess;
733 else
734 map = nfs3_anyaccess;
735
736
737 query = *access;
738 for (; map->access; map++) {
739 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700740 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 sresult |= map->access;
743
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700744 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 switch (err2) {
746 case nfs_ok:
747 result |= map->access;
748 break;
749
750 /* the following error codes just mean the access was not allowed,
751 * rather than an error occurred */
752 case nfserr_rofs:
753 case nfserr_acces:
754 case nfserr_perm:
755 /* simply don't "or" in the access bit. */
756 break;
757 default:
758 error = err2;
759 goto out;
760 }
761 }
762 }
763 *access = result;
764 if (supported)
765 *supported = sresult;
766
767 out:
768 return error;
769}
770#endif /* CONFIG_NFSD_V3 */
771
J. Bruce Fields105f4622011-06-07 11:50:23 -0400772static int nfsd_open_break_lease(struct inode *inode, int access)
773{
774 unsigned int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
J. Bruce Fields105f4622011-06-07 11:50:23 -0400776 if (access & NFSD_MAY_NOT_BREAK_LEASE)
777 return 0;
778 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
779 return break_lease(inode, mode | O_NONBLOCK);
780}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782/*
783 * Open an existing file or directory.
Bernd Schubert999448a2012-03-18 22:44:49 -0400784 * The may_flags argument indicates the type of open (read/write/lock)
785 * and additional flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 * N.B. After this call fhp needs an fh_put
787 */
Al Viro6264d692006-10-19 23:28:58 -0700788__be32
Al Viro175a4eb2011-07-26 03:30:54 -0400789nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
Bernd Schubert999448a2012-03-18 22:44:49 -0400790 int may_flags, struct file **filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Al Viro765927b2012-06-26 21:58:53 +0400792 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 struct inode *inode;
Al Viro6264d692006-10-19 23:28:58 -0700794 int flags = O_RDONLY|O_LARGEFILE;
795 __be32 err;
Jeff Layton91885252010-03-19 08:06:28 -0400796 int host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
David Howellse0e81732009-09-02 09:13:40 +0100798 validate_process_creds();
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /*
801 * If we get here, then the client has already done an "open",
802 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
803 * in case a chmod has now revoked permission.
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400804 *
805 * Arguably we should also allow the owner override for
806 * directories, but we never have and it doesn't seem to have
807 * caused anyone a problem. If we were to change this, note
808 * also that our filldir callbacks would need a variant of
809 * lookup_one_len that doesn't check permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 */
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400811 if (type == S_IFREG)
812 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
813 err = fh_verify(rqstp, fhp, type, may_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (err)
815 goto out;
816
Al Viro765927b2012-06-26 21:58:53 +0400817 path.mnt = fhp->fh_export->ex_path.mnt;
818 path.dentry = fhp->fh_dentry;
819 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 /* Disallow write access to files with the append-only bit set
822 * or any access when mandatory locking enabled
823 */
824 err = nfserr_perm;
Bernd Schubert999448a2012-03-18 22:44:49 -0400825 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400827 /*
828 * We must ignore files (but only files) which might have mandatory
829 * locks on them because there is no way to know if the accesser has
830 * the lock.
831 */
832 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 goto out;
834
835 if (!inode->i_fop)
836 goto out;
837
Bernd Schubert999448a2012-03-18 22:44:49 -0400838 host_err = nfsd_open_break_lease(inode, may_flags);
Al Viro6264d692006-10-19 23:28:58 -0700839 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 goto out_nfserr;
841
Bernd Schubert999448a2012-03-18 22:44:49 -0400842 if (may_flags & NFSD_MAY_WRITE) {
843 if (may_flags & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700844 flags = O_RDWR|O_LARGEFILE;
845 else
846 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Al Viro765927b2012-06-26 21:58:53 +0400848 *filp = dentry_open(&path, flags, current_cred());
Harshula Jayasuriyae4daf1f2013-07-23 14:21:35 +1000849 if (IS_ERR(*filp)) {
Al Viro6264d692006-10-19 23:28:58 -0700850 host_err = PTR_ERR(*filp);
Harshula Jayasuriyae4daf1f2013-07-23 14:21:35 +1000851 *filp = NULL;
852 } else {
Bernd Schubert999448a2012-03-18 22:44:49 -0400853 host_err = ima_file_check(*filp, may_flags);
854
Bernd Schubert06effdb2012-03-18 22:44:50 -0400855 if (may_flags & NFSD_MAY_64BIT_COOKIE)
856 (*filp)->f_mode |= FMODE_64BITHASH;
857 else
858 (*filp)->f_mode |= FMODE_32BITHASH;
859 }
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700862 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863out:
David Howellse0e81732009-09-02 09:13:40 +0100864 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return err;
866}
867
868/*
869 * Close a file.
870 */
871void
872nfsd_close(struct file *filp)
873{
874 fput(filp);
875}
876
J. Bruce Fields9a8d2482009-01-06 13:37:03 -0500877/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 * Obtain the readahead parameters for the file
879 * specified by (dev, ino).
880 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882static inline struct raparms *
883nfsd_get_raparms(dev_t dev, ino_t ino)
884{
885 struct raparms *ra, **rap, **frap = NULL;
886 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700887 unsigned int hash;
888 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Greg Banksfce14562006-10-04 02:15:49 -0700890 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
891 rab = &raparm_hash[hash];
892
893 spin_lock(&rab->pb_lock);
894 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (ra->p_ino == ino && ra->p_dev == dev)
896 goto found;
897 depth++;
898 if (ra->p_count == 0)
899 frap = rap;
900 }
Konstantin Khorenko3aa6e0a2011-02-01 17:16:29 +0300901 depth = nfsdstats.ra_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700903 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return NULL;
905 }
906 rap = frap;
907 ra = *frap;
908 ra->p_dev = dev;
909 ra->p_ino = ino;
910 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700911 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912found:
Greg Banksfce14562006-10-04 02:15:49 -0700913 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700915 ra->p_next = rab->pb_head;
916 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918 ra->p_count++;
919 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700920 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return ra;
922}
923
924/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200925 * Grab and keep cached pages associated with a file in the svc_rqst
926 * so that they can be passed to the network sendmsg/sendpage routines
927 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 */
929static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200930nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
931 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Jens Axboecf8208d2007-06-12 21:22:14 +0200933 struct svc_rqst *rqstp = sd->u.data;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500934 struct page **pp = rqstp->rq_next_page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200935 struct page *page = buf->page;
936 size_t size;
Jens Axboecf8208d2007-06-12 21:22:14 +0200937
938 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 if (rqstp->rq_res.page_len == 0) {
941 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500942 put_page(*rqstp->rq_next_page);
943 *(rqstp->rq_next_page++) = page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200944 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700946 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500948 if (*rqstp->rq_next_page)
949 put_page(*rqstp->rq_next_page);
950 *(rqstp->rq_next_page++) = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700952 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return size;
956}
957
Jens Axboecf8208d2007-06-12 21:22:14 +0200958static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
959 struct splice_desc *sd)
960{
961 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
962}
963
Al Viro6264d692006-10-19 23:28:58 -0700964static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
966 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
967{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700969 __be32 err;
970 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 err = nfserr_perm;
Dave Hansena8754be2007-10-16 23:31:15 -0700973
Jens Axboecf8208d2007-06-12 21:22:14 +0200974 if (file->f_op->splice_read && rqstp->rq_splice_ok) {
975 struct splice_desc sd = {
976 .len = 0,
977 .total_len = *count,
978 .pos = offset,
979 .u.data = rqstp,
980 };
981
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500982 rqstp->rq_next_page = rqstp->rq_respages + 1;
Jens Axboecf8208d2007-06-12 21:22:14 +0200983 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 } else {
985 oldfs = get_fs();
986 set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -0700987 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 set_fs(oldfs);
989 }
990
Al Viro6264d692006-10-19 23:28:58 -0700991 if (host_err >= 0) {
992 nfsdstats.io_read += host_err;
993 *count = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 err = 0;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500995 fsnotify_access(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 } else
Al Viro6264d692006-10-19 23:28:58 -0700997 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return err;
999}
1000
Neil Brown9f708e42006-01-06 00:19:59 -08001001static void kill_suid(struct dentry *dentry)
1002{
1003 struct iattr ia;
Serge E. Hallynb5376772007-10-16 23:31:36 -07001004 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
Neil Brown9f708e42006-01-06 00:19:59 -08001005
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001006 mutex_lock(&dentry->d_inode->i_mutex);
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -04001007 /*
1008 * Note we call this on write, so notify_change will not
1009 * encounter any conflicting delegations:
1010 */
1011 notify_change(dentry, &ia, NULL);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001012 mutex_unlock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -08001013}
1014
J. Bruce Fieldsd911df72009-06-15 16:03:53 -07001015/*
1016 * Gathered writes: If another process is currently writing to the file,
1017 * there's a high chance this is another nfsd (triggered by a bulk write
1018 * from a client's biod). Rather than syncing the file with each write
1019 * request, we sleep for 10 msec.
1020 *
1021 * I don't know if this roughly approximates C. Juszak's idea of
1022 * gathered writes, but it's a nice and simple solution (IMHO), and it
1023 * seems to work:-)
1024 *
1025 * Note: we do this only in the NFSv2 case, since v3 and higher have a
1026 * better tool (separate unstable writes and commits) for solving this
1027 * problem.
1028 */
1029static int wait_for_concurrent_writes(struct file *file)
1030{
Al Viro496ad9a2013-01-23 17:07:38 -05001031 struct inode *inode = file_inode(file);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -07001032 static ino_t last_ino;
1033 static dev_t last_dev;
1034 int err = 0;
1035
1036 if (atomic_read(&inode->i_writecount) > 1
1037 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
1038 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
1039 msleep(10);
1040 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
1041 }
1042
1043 if (inode->i_state & I_DIRTY) {
1044 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001045 err = vfs_fsync(file, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -07001046 }
1047 last_ino = inode->i_ino;
1048 last_dev = inode->i_sb->s_dev;
1049 return err;
1050}
1051
Al Viro6264d692006-10-19 23:28:58 -07001052static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1054 loff_t offset, struct kvec *vec, int vlen,
David Shaw31dec252009-03-05 20:16:14 -05001055 unsigned long *cnt, int *stablep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 struct svc_export *exp;
1058 struct dentry *dentry;
1059 struct inode *inode;
1060 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001061 __be32 err = 0;
1062 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 int stable = *stablep;
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001064 int use_wgather;
Kent Overstreete49dbbf2013-03-22 11:18:24 -07001065 loff_t pos = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001067 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 inode = dentry->d_inode;
1069 exp = fhp->fh_export;
1070
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001071 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (!EX_ISSYNC(exp))
1074 stable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 /* Write the data. */
1077 oldfs = get_fs(); set_fs(KERNEL_DS);
Kent Overstreete49dbbf2013-03-22 11:18:24 -07001078 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001080 if (host_err < 0)
1081 goto out_nfserr;
1082 *cnt = host_err;
1083 nfsdstats.io_write += host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -05001084 fsnotify_modify(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 /* clear setuid/setgid flag after write */
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001087 if (inode->i_mode & (S_ISUID | S_ISGID))
Neil Brown9f708e42006-01-06 00:19:59 -08001088 kill_suid(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
J. Bruce Fieldsface1502012-10-26 16:12:31 -04001090 if (stable) {
1091 if (use_wgather)
1092 host_err = wait_for_concurrent_writes(file);
1093 else
1094 host_err = vfs_fsync_range(file, offset, offset+*cnt, 0);
1095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001097out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001098 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001099 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001101 else
Al Viro6264d692006-10-19 23:28:58 -07001102 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return err;
1104}
1105
1106/*
1107 * Read data from a file. count must contain the requested read count
1108 * on entry. On return, *count contains the number of bytes actually read.
1109 * N.B. After this call fhp needs an fh_put
1110 */
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001111__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001112 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
1113{
1114 struct file *file;
1115 struct inode *inode;
1116 struct raparms *ra;
1117 __be32 err;
1118
1119 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
1120 if (err)
1121 return err;
1122
Al Viro496ad9a2013-01-23 17:07:38 -05001123 inode = file_inode(file);
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001124
1125 /* Get readahead parameters */
1126 ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
1127
1128 if (ra && ra->p_set)
1129 file->f_ra = ra->p_ra;
1130
1131 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1132
1133 /* Write back readahead params */
1134 if (ra) {
1135 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
1136 spin_lock(&rab->pb_lock);
1137 ra->p_ra = file->f_ra;
1138 ra->p_set = 1;
1139 ra->p_count--;
1140 spin_unlock(&rab->pb_lock);
1141 }
1142
1143 nfsd_close(file);
1144 return err;
1145}
1146
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001147/* As above, but use the provided file descriptor. */
Al Viro6264d692006-10-19 23:28:58 -07001148__be32
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001149nfsd_read_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 loff_t offset, struct kvec *vec, int vlen,
1151 unsigned long *count)
1152{
Al Viro6264d692006-10-19 23:28:58 -07001153 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001156 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001157 NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (err)
1159 goto out;
1160 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001161 } else /* Note file may still be NULL in NFSv4 special stateid case: */
1162 err = nfsd_read(rqstp, fhp, offset, vec, vlen, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163out:
1164 return err;
1165}
1166
1167/*
1168 * Write data to a file.
1169 * The stable flag requests synchronous writes.
1170 * N.B. After this call fhp needs an fh_put
1171 */
Al Viro6264d692006-10-19 23:28:58 -07001172__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
David Shaw31dec252009-03-05 20:16:14 -05001174 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 int *stablep)
1176{
Al Viro6264d692006-10-19 23:28:58 -07001177 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001180 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001181 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (err)
1183 goto out;
1184 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1185 stablep);
1186 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001187 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (err)
1189 goto out;
1190
1191 if (cnt)
1192 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1193 cnt, stablep);
1194 nfsd_close(file);
1195 }
1196out:
1197 return err;
1198}
1199
1200#ifdef CONFIG_NFSD_V3
1201/*
1202 * Commit all pending writes to stable storage.
Trond Myklebustaa696a62010-01-29 16:44:25 -05001203 *
1204 * Note: we only guarantee that data that lies within the range specified
1205 * by the 'offset' and 'count' parameters will be synced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 *
1207 * Unfortunately we cannot lock the file to make sure we return full WCC
1208 * data to the client, as locking happens lower down in the filesystem.
1209 */
Al Viro6264d692006-10-19 23:28:58 -07001210__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1212 loff_t offset, unsigned long count)
1213{
1214 struct file *file;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001215 loff_t end = LLONG_MAX;
1216 __be32 err = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Trond Myklebustaa696a62010-01-29 16:44:25 -05001218 if (offset < 0)
1219 goto out;
1220 if (count != 0) {
1221 end = offset + (loff_t)count - 1;
1222 if (end < offset)
1223 goto out;
1224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Jeff Layton91885252010-03-19 08:06:28 -04001226 err = nfsd_open(rqstp, fhp, S_IFREG,
1227 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001228 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001229 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (EX_ISSYNC(fhp->fh_export)) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001231 int err2 = vfs_fsync_range(file, offset, end, 0);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001232
1233 if (err2 != -EINVAL)
1234 err = nfserrno(err2);
1235 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 err = nfserr_notsupp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238
1239 nfsd_close(file);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001240out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return err;
1242}
1243#endif /* CONFIG_NFSD_V3 */
1244
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001245static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001246nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1247 struct iattr *iap)
1248{
1249 /*
1250 * Mode has already been set earlier in create:
1251 */
1252 iap->ia_valid &= ~ATTR_MODE;
1253 /*
1254 * Setting uid/gid works only for root. Irix appears to
1255 * send along the gid on create when it tries to implement
1256 * setgid directories via NFS:
1257 */
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001258 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001259 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1260 if (iap->ia_valid)
1261 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1262 return 0;
1263}
1264
wengang wang4ac35c22009-02-10 11:27:51 +08001265/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1266 * setting size to 0 may fail for some specific file systems by the permission
1267 * checking which requires WRITE permission but the mode is 000.
1268 * we ignore the resizing(to 0) on the just new created file, since the size is
1269 * 0 after file created.
1270 *
1271 * call this only after vfs_create() is called.
1272 * */
1273static void
1274nfsd_check_ignore_resizing(struct iattr *iap)
1275{
1276 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1277 iap->ia_valid &= ~ATTR_SIZE;
1278}
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280/*
1281 * Create a file (regular, directory, device, fifo); UNIX sockets
1282 * not yet implemented.
1283 * If the response fh has been verified, the parent directory should
1284 * already be locked. Note that the parent directory is left locked.
1285 *
1286 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1287 */
Al Viro6264d692006-10-19 23:28:58 -07001288__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1290 char *fname, int flen, struct iattr *iap,
1291 int type, dev_t rdev, struct svc_fh *resfhp)
1292{
1293 struct dentry *dentry, *dchild = NULL;
1294 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001295 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001296 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001297 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 err = nfserr_perm;
1300 if (!flen)
1301 goto out;
1302 err = nfserr_exist;
1303 if (isdotent(fname, flen))
1304 goto out;
1305
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001306 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (err)
1308 goto out;
1309
1310 dentry = fhp->fh_dentry;
1311 dirp = dentry->d_inode;
1312
1313 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001314 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 goto out;
1316 /*
1317 * Check whether the response file handle has been verified yet.
1318 * If it has, the parent directory should already be locked.
1319 */
1320 if (!resfhp->fh_dentry) {
Jan Kara4a55c102012-06-12 16:20:33 +02001321 host_err = fh_want_write(fhp);
1322 if (host_err)
1323 goto out_nfserr;
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001326 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001328 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (IS_ERR(dchild))
1330 goto out_nfserr;
1331 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1332 if (err)
1333 goto out;
1334 } else {
1335 /* called from nfsd_proc_create */
1336 dchild = dget(resfhp->fh_dentry);
1337 if (!fhp->fh_locked) {
1338 /* not actually possible */
1339 printk(KERN_ERR
Al Viroa6a9f182013-09-16 10:57:01 -04001340 "nfsd_create: parent %pd2 not locked!\n",
1341 dentry);
Al Virod75f2b92006-01-18 17:43:44 -08001342 err = nfserr_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 goto out;
1344 }
1345 }
1346 /*
1347 * Make sure the child dentry is still negative ...
1348 */
1349 err = nfserr_exist;
1350 if (dchild->d_inode) {
Al Viroa6a9f182013-09-16 10:57:01 -04001351 dprintk("nfsd_create: dentry %pd/%pd not negative!\n",
1352 dentry, dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 goto out;
1354 }
1355
1356 if (!(iap->ia_valid & ATTR_MODE))
1357 iap->ia_mode = 0;
1358 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1359
Miklos Szeredi07cad1d2008-07-01 15:38:35 +02001360 err = nfserr_inval;
1361 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1362 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1363 type);
1364 goto out;
1365 }
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 /*
1368 * Get the dir op function pointer.
1369 */
J. Bruce Fields088406b2006-11-08 17:44:59 -08001370 err = 0;
Jan Kara4a55c102012-06-12 16:20:33 +02001371 host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 switch (type) {
1373 case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04001374 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
wengang wang4ac35c22009-02-10 11:27:51 +08001375 if (!host_err)
1376 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 break;
1378 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001379 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 break;
1381 case S_IFCHR:
1382 case S_IFBLK:
1383 case S_IFIFO:
1384 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001385 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 break;
Dave Hansen463c3192008-02-15 14:37:57 -08001387 }
Jan Kara4a55c102012-06-12 16:20:33 +02001388 if (host_err < 0)
Dave Hansen463c3192008-02-15 14:37:57 -08001389 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Ben Myersf5019122010-02-17 14:05:11 -06001391 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Ben Myersf5019122010-02-17 14:05:11 -06001393 /*
1394 * nfsd_setattr already committed the child. Transactional filesystems
1395 * had a chance to commit changes for both parent and child
1396 * simultaneously making the following commit_metadata a noop.
1397 */
1398 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001399 if (err2)
1400 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /*
1402 * Update the file handle to get the new inode info.
1403 */
1404 if (!err)
1405 err = fh_update(resfhp);
1406out:
1407 if (dchild && !IS_ERR(dchild))
1408 dput(dchild);
1409 return err;
1410
1411out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001412 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 goto out;
1414}
1415
1416#ifdef CONFIG_NFSD_V3
Mi Jinlongac6721a2011-04-20 17:06:25 +08001417
1418static inline int nfsd_create_is_exclusive(int createmode)
1419{
1420 return createmode == NFS3_CREATE_EXCLUSIVE
1421 || createmode == NFS4_CREATE_EXCLUSIVE4_1;
1422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424/*
Mi Jinlongac6721a2011-04-20 17:06:25 +08001425 * NFSv3 and NFSv4 version of nfsd_create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 */
Al Viro6264d692006-10-19 23:28:58 -07001427__be32
Mi Jinlongac6721a2011-04-20 17:06:25 +08001428do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 char *fname, int flen, struct iattr *iap,
1430 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields856121b2011-10-13 11:37:11 -04001431 bool *truncp, bool *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
1433 struct dentry *dentry, *dchild = NULL;
1434 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001435 __be32 err;
1436 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 err = nfserr_perm;
1440 if (!flen)
1441 goto out;
1442 err = nfserr_exist;
1443 if (isdotent(fname, flen))
1444 goto out;
1445 if (!(iap->ia_valid & ATTR_MODE))
1446 iap->ia_mode = 0;
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001447 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (err)
1449 goto out;
1450
1451 dentry = fhp->fh_dentry;
1452 dirp = dentry->d_inode;
1453
1454 /* Get all the sanity checks out of the way before
1455 * we lock the parent. */
1456 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001457 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001459
1460 host_err = fh_want_write(fhp);
1461 if (host_err)
1462 goto out_nfserr;
1463
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001464 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 /*
1467 * Compose the response file handle.
1468 */
1469 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001470 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (IS_ERR(dchild))
1472 goto out_nfserr;
1473
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001474 /* If file doesn't exist, check for permissions to create one */
1475 if (!dchild->d_inode) {
1476 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1477 if (err)
1478 goto out;
1479 }
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1482 if (err)
1483 goto out;
1484
Mi Jinlongac6721a2011-04-20 17:06:25 +08001485 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001486 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001487 * the high bit set, so just clear the high bits. If this is
1488 * ever changed to use different attrs for storing the
1489 * verifier, then do_open_lookup() will also need to be fixed
1490 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 */
1492 v_mtime = verifier[0]&0x7fffffff;
1493 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495
1496 if (dchild->d_inode) {
1497 err = 0;
1498
1499 switch (createmode) {
1500 case NFS3_CREATE_UNCHECKED:
1501 if (! S_ISREG(dchild->d_inode->i_mode))
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -04001502 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 else if (truncp) {
1504 /* in nfsv4, we need to treat this case a little
1505 * differently. we don't want to truncate the
1506 * file now; this would be wrong if the OPEN
1507 * fails for some other reason. furthermore,
1508 * if the size is nonzero, we should ignore it
1509 * according to spec!
1510 */
1511 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1512 }
1513 else {
1514 iap->ia_valid &= ATTR_SIZE;
1515 goto set_attr;
1516 }
1517 break;
1518 case NFS3_CREATE_EXCLUSIVE:
1519 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1520 && dchild->d_inode->i_atime.tv_sec == v_atime
Neil Brown7007c902012-12-07 15:40:55 -05001521 && dchild->d_inode->i_size == 0 ) {
1522 if (created)
1523 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 break;
Neil Brown7007c902012-12-07 15:40:55 -05001525 }
Mi Jinlongac6721a2011-04-20 17:06:25 +08001526 case NFS4_CREATE_EXCLUSIVE4_1:
1527 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1528 && dchild->d_inode->i_atime.tv_sec == v_atime
Neil Brown7007c902012-12-07 15:40:55 -05001529 && dchild->d_inode->i_size == 0 ) {
1530 if (created)
1531 *created = 1;
Mi Jinlongac6721a2011-04-20 17:06:25 +08001532 goto set_attr;
Neil Brown7007c902012-12-07 15:40:55 -05001533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /* fallthru */
1535 case NFS3_CREATE_GUARDED:
1536 err = nfserr_exist;
1537 }
Al Virobad0dcf2011-11-23 12:03:18 -05001538 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 goto out;
1540 }
1541
Al Viro312b63f2012-06-10 18:09:36 -04001542 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
Dave Hansen463c3192008-02-15 14:37:57 -08001543 if (host_err < 0) {
Al Virobad0dcf2011-11-23 12:03:18 -05001544 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001546 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001547 if (created)
1548 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
wengang wang4ac35c22009-02-10 11:27:51 +08001550 nfsd_check_ignore_resizing(iap);
1551
Mi Jinlongac6721a2011-04-20 17:06:25 +08001552 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001553 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001555 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 /* XXX someone who knows this better please fix it for nsec */
1557 iap->ia_mtime.tv_sec = v_mtime;
1558 iap->ia_atime.tv_sec = v_atime;
1559 iap->ia_mtime.tv_nsec = 0;
1560 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001564 err = nfsd_create_setattr(rqstp, resfhp, iap);
1565
1566 /*
1567 * nfsd_setattr already committed the child (and possibly also the parent).
1568 */
1569 if (!err)
1570 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001571
1572 /*
1573 * Update the filehandle to get the new inode info.
1574 */
1575 if (!err)
1576 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 out:
1579 fh_unlock(fhp);
1580 if (dchild && !IS_ERR(dchild))
1581 dput(dchild);
Jan Kara4a55c102012-06-12 16:20:33 +02001582 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return err;
1584
1585 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001586 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 goto out;
1588}
1589#endif /* CONFIG_NFSD_V3 */
1590
1591/*
1592 * Read a symlink. On entry, *lenp must contain the maximum path length that
1593 * fits into the buffer. On return, it contains the true length.
1594 * N.B. After this call fhp needs an fh_put
1595 */
Al Viro6264d692006-10-19 23:28:58 -07001596__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1598{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 struct inode *inode;
1600 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001601 __be32 err;
1602 int host_err;
Al Viro68ac1232012-03-15 08:21:57 -04001603 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001605 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (err)
1607 goto out;
1608
Al Viro68ac1232012-03-15 08:21:57 -04001609 path.mnt = fhp->fh_export->ex_path.mnt;
1610 path.dentry = fhp->fh_dentry;
1611 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613 err = nfserr_inval;
Al Viroacfa4382008-12-04 10:06:33 -05001614 if (!inode->i_op->readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 goto out;
1616
Al Viro68ac1232012-03-15 08:21:57 -04001617 touch_atime(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 /* N.B. Why does this call need a get_fs()??
1619 * Remove the set_fs and watch the fireworks:-) --okir
1620 */
1621
1622 oldfs = get_fs(); set_fs(KERNEL_DS);
J. Bruce Fieldsfac7a172012-07-27 14:16:55 -04001623 host_err = inode->i_op->readlink(path.dentry, (char __user *)buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 set_fs(oldfs);
1625
Al Viro6264d692006-10-19 23:28:58 -07001626 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001628 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 err = 0;
1630out:
1631 return err;
1632
1633out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001634 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 goto out;
1636}
1637
1638/*
1639 * Create a symlink and look up its inode
1640 * N.B. After this call _both_ fhp and resfhp need an fh_put
1641 */
Al Viro6264d692006-10-19 23:28:58 -07001642__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1644 char *fname, int flen,
1645 char *path, int plen,
1646 struct svc_fh *resfhp,
1647 struct iattr *iap)
1648{
1649 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001650 __be32 err, cerr;
1651 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
1653 err = nfserr_noent;
1654 if (!flen || !plen)
1655 goto out;
1656 err = nfserr_exist;
1657 if (isdotent(fname, flen))
1658 goto out;
1659
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001660 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (err)
1662 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001663
1664 host_err = fh_want_write(fhp);
1665 if (host_err)
1666 goto out_nfserr;
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 fh_lock(fhp);
1669 dentry = fhp->fh_dentry;
1670 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001671 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (IS_ERR(dnew))
1673 goto out_nfserr;
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (unlikely(path[plen] != 0)) {
1676 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1677 if (path_alloced == NULL)
Al Viro6264d692006-10-19 23:28:58 -07001678 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 else {
1680 strncpy(path_alloced, path, plen);
1681 path_alloced[plen] = 0;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001682 host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 kfree(path_alloced);
1684 }
1685 } else
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001686 host_err = vfs_symlink(dentry->d_inode, dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001687 err = nfserrno(host_err);
Ben Myersf5019122010-02-17 14:05:11 -06001688 if (!err)
1689 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 fh_unlock(fhp);
1691
Al Virobad0dcf2011-11-23 12:03:18 -05001692 fh_drop_write(fhp);
Dave Hansen75c3f292008-02-15 14:37:45 -08001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1695 dput(dnew);
1696 if (err==0) err = cerr;
1697out:
1698 return err;
1699
1700out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001701 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 goto out;
1703}
1704
1705/*
1706 * Create a hardlink
1707 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1708 */
Al Viro6264d692006-10-19 23:28:58 -07001709__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1711 char *name, int len, struct svc_fh *tfhp)
1712{
1713 struct dentry *ddir, *dnew, *dold;
J. Bruce Fields55b13352010-07-19 16:38:24 -04001714 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001715 __be32 err;
1716 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001718 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (err)
1720 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001721 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (err)
1723 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001724 err = nfserr_isdir;
1725 if (S_ISDIR(tfhp->fh_dentry->d_inode->i_mode))
1726 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 err = nfserr_perm;
1728 if (!len)
1729 goto out;
1730 err = nfserr_exist;
1731 if (isdotent(name, len))
1732 goto out;
1733
Jan Kara4a55c102012-06-12 16:20:33 +02001734 host_err = fh_want_write(tfhp);
1735 if (host_err) {
1736 err = nfserrno(host_err);
1737 goto out;
1738 }
1739
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001740 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 ddir = ffhp->fh_dentry;
1742 dirp = ddir->d_inode;
1743
1744 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001745 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (IS_ERR(dnew))
1747 goto out_nfserr;
1748
1749 dold = tfhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001751 err = nfserr_noent;
1752 if (!dold->d_inode)
Jan Kara4a55c102012-06-12 16:20:33 +02001753 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04001754 host_err = vfs_link(dold, dirp, dnew, NULL);
Al Viro6264d692006-10-19 23:28:58 -07001755 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001756 err = nfserrno(commit_metadata(ffhp));
1757 if (!err)
1758 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 } else {
Al Viro6264d692006-10-19 23:28:58 -07001760 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 err = nfserr_acces;
1762 else
Al Viro6264d692006-10-19 23:28:58 -07001763 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001765out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001767out_unlock:
1768 fh_unlock(ffhp);
Jan Kara4a55c102012-06-12 16:20:33 +02001769 fh_drop_write(tfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770out:
1771 return err;
1772
1773out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001774 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001775 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
1777
1778/*
1779 * Rename a file
1780 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1781 */
Al Viro6264d692006-10-19 23:28:58 -07001782__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1784 struct svc_fh *tfhp, char *tname, int tlen)
1785{
1786 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1787 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001788 __be32 err;
1789 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001791 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (err)
1793 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001794 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (err)
1796 goto out;
1797
1798 fdentry = ffhp->fh_dentry;
1799 fdir = fdentry->d_inode;
1800
1801 tdentry = tfhp->fh_dentry;
1802 tdir = tdentry->d_inode;
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 err = nfserr_perm;
1805 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1806 goto out;
1807
Jan Kara4a55c102012-06-12 16:20:33 +02001808 host_err = fh_want_write(ffhp);
1809 if (host_err) {
1810 err = nfserrno(host_err);
1811 goto out;
1812 }
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 /* cannot use fh_lock as we need deadlock protective ordering
1815 * so do it by hand */
1816 trap = lock_rename(tdentry, fdentry);
1817 ffhp->fh_locked = tfhp->fh_locked = 1;
1818 fill_pre_wcc(ffhp);
1819 fill_pre_wcc(tfhp);
1820
1821 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001822 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 if (IS_ERR(odentry))
1824 goto out_nfserr;
1825
Al Viro6264d692006-10-19 23:28:58 -07001826 host_err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (!odentry->d_inode)
1828 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001829 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 if (odentry == trap)
1831 goto out_dput_old;
1832
1833 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001834 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (IS_ERR(ndentry))
1836 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001837 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 if (ndentry == trap)
1839 goto out_dput_new;
1840
Dave Hansen9079b1e2008-02-15 14:37:49 -08001841 host_err = -EXDEV;
1842 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1843 goto out_dput_new;
J. Bruce Fieldsaa387d6c2013-04-15 16:03:46 -04001844 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1845 goto out_dput_new;
Dave Hansen9079b1e2008-02-15 14:37:49 -08001846
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04001847 host_err = vfs_rename(fdir, odentry, tdir, ndentry, NULL);
Ben Myersf5019122010-02-17 14:05:11 -06001848 if (!host_err) {
1849 host_err = commit_metadata(tfhp);
Al Viro6264d692006-10-19 23:28:58 -07001850 if (!host_err)
Ben Myersf5019122010-02-17 14:05:11 -06001851 host_err = commit_metadata(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 out_dput_new:
1854 dput(ndentry);
1855 out_dput_old:
1856 dput(odentry);
1857 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001858 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 /* we cannot reply on fh_unlock on the two filehandles,
1861 * as that would do the wrong thing if the two directories
1862 * were the same, so again we do it by hand
1863 */
1864 fill_post_wcc(ffhp);
1865 fill_post_wcc(tfhp);
1866 unlock_rename(tdentry, fdentry);
1867 ffhp->fh_locked = tfhp->fh_locked = 0;
Jan Kara4a55c102012-06-12 16:20:33 +02001868 fh_drop_write(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870out:
1871 return err;
1872}
1873
1874/*
1875 * Unlink a file or directory
1876 * N.B. After this call fhp needs an fh_put
1877 */
Al Viro6264d692006-10-19 23:28:58 -07001878__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1880 char *fname, int flen)
1881{
1882 struct dentry *dentry, *rdentry;
1883 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001884 __be32 err;
1885 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 err = nfserr_acces;
1888 if (!flen || isdotent(fname, flen))
1889 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001890 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (err)
1892 goto out;
1893
Jan Kara4a55c102012-06-12 16:20:33 +02001894 host_err = fh_want_write(fhp);
1895 if (host_err)
1896 goto out_nfserr;
1897
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001898 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 dentry = fhp->fh_dentry;
1900 dirp = dentry->d_inode;
1901
1902 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001903 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (IS_ERR(rdentry))
1905 goto out_nfserr;
1906
1907 if (!rdentry->d_inode) {
1908 dput(rdentry);
1909 err = nfserr_noent;
1910 goto out;
1911 }
1912
1913 if (!type)
1914 type = rdentry->d_inode->i_mode & S_IFMT;
1915
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001916 if (type != S_IFDIR)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04001917 host_err = vfs_unlink(dirp, rdentry, NULL);
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001918 else
Al Viro6264d692006-10-19 23:28:58 -07001919 host_err = vfs_rmdir(dirp, rdentry);
J. Bruce Fields541ce982011-01-14 20:00:02 -05001920 if (!host_err)
1921 host_err = commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 dput(rdentry);
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001925 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001926out:
1927 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
1930/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001931 * We do this buffering because we must not call back into the file
1932 * system's ->lookup() method from the filldir callback. That may well
1933 * deadlock a number of file systems.
1934 *
1935 * This is based heavily on the implementation of same in XFS.
1936 */
1937struct buffered_dirent {
1938 u64 ino;
1939 loff_t offset;
1940 int namlen;
1941 unsigned int d_type;
1942 char name[];
1943};
1944
1945struct readdir_data {
Al Viro5c0ba4e2013-05-15 13:52:59 -04001946 struct dir_context ctx;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001947 char *dirent;
1948 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001949 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001950};
1951
1952static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
1953 loff_t offset, u64 ino, unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001954{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001955 struct readdir_data *buf = __buf;
1956 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1957 unsigned int reclen;
1958
1959 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001960 if (buf->used + reclen > PAGE_SIZE) {
1961 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001962 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001963 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001964
1965 de->namlen = namlen;
1966 de->offset = offset;
1967 de->ino = ino;
1968 de->d_type = d_type;
1969 memcpy(de->name, name, namlen);
1970 buf->used += reclen;
1971
1972 return 0;
1973}
1974
David Woodhouse2f9092e2009-04-20 23:18:37 +01001975static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
1976 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001977{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001978 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001979 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001980 int size;
1981 loff_t offset;
Al Viroac6614b2013-05-22 22:22:04 -04001982 struct readdir_data buf = {
1983 .ctx.actor = nfsd_buffered_filldir,
1984 .dirent = (void *)__get_free_page(GFP_KERNEL)
1985 };
David Woodhouse2628b762008-07-31 17:16:51 +01001986
David Woodhouse14f7dd62008-07-31 20:29:12 +01001987 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001988 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001989
David Woodhouse14f7dd62008-07-31 20:29:12 +01001990 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001991
1992 while (1) {
Al Viro496ad9a2013-01-23 17:07:38 -05001993 struct inode *dir_inode = file_inode(file);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001994 unsigned int reclen;
1995
Doug Nazarb726e922008-11-05 06:16:28 -05001996 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001997 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001998 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001999
Al Viro5c0ba4e2013-05-15 13:52:59 -04002000 host_err = iterate_dir(file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -04002001 if (buf.full)
2002 host_err = 0;
2003
2004 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01002005 break;
2006
2007 size = buf.used;
2008
2009 if (!size)
2010 break;
2011
David Woodhouse2f9092e2009-04-20 23:18:37 +01002012 /*
2013 * Various filldir functions may end up calling back into
2014 * lookup_one_len() and the file system's ->lookup() method.
2015 * These expect i_mutex to be held, as it would within readdir.
2016 */
2017 host_err = mutex_lock_killable(&dir_inode->i_mutex);
2018 if (host_err)
2019 break;
2020
David Woodhouse14f7dd62008-07-31 20:29:12 +01002021 de = (struct buffered_dirent *)buf.dirent;
2022 while (size > 0) {
2023 offset = de->offset;
2024
2025 if (func(cdp, de->name, de->namlen, de->offset,
2026 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01002027 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01002028
2029 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01002030 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01002031
2032 reclen = ALIGN(sizeof(*de) + de->namlen,
2033 sizeof(u64));
2034 size -= reclen;
2035 de = (struct buffered_dirent *)((char *)de + reclen);
2036 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01002037 mutex_unlock(&dir_inode->i_mutex);
2038 if (size > 0) /* We bailed out early */
2039 break;
2040
David Woodhousec002a6c2008-08-17 17:21:18 +01002041 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01002042 }
2043
David Woodhouse14f7dd62008-07-31 20:29:12 +01002044 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01002045
2046 if (host_err)
2047 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01002048
2049 *offsetp = offset;
2050 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01002051}
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053/*
2054 * Read entries from a directory.
2055 * The NFSv3/4 verifier we ignore for now.
2056 */
Al Viro6264d692006-10-19 23:28:58 -07002057__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
NeilBrowna0ad13e2007-01-26 00:57:10 -08002059 struct readdir_cd *cdp, filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Al Viro6264d692006-10-19 23:28:58 -07002061 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 struct file *file;
2063 loff_t offset = *offsetp;
Bernd Schubert06effdb2012-03-18 22:44:50 -04002064 int may_flags = NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Bernd Schubert06effdb2012-03-18 22:44:50 -04002066 /* NFSv2 only supports 32 bit cookies */
2067 if (rqstp->rq_vers > 2)
2068 may_flags |= NFSD_MAY_64BIT_COOKIE;
2069
2070 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (err)
2072 goto out;
2073
Jeff Laytonb108fe62012-04-25 15:30:00 -04002074 offset = vfs_llseek(file, offset, SEEK_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (offset < 0) {
2076 err = nfserrno((int)offset);
2077 goto out_close;
2078 }
2079
David Woodhouse14f7dd62008-07-31 20:29:12 +01002080 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 if (err == nfserr_eof || err == nfserr_toosmall)
2083 err = nfs_ok; /* can still be found in ->err */
2084out_close:
2085 nfsd_close(file);
2086out:
2087 return err;
2088}
2089
2090/*
2091 * Get file system stats
2092 * N.B. After this call fhp needs an fh_put
2093 */
Al Viro6264d692006-10-19 23:28:58 -07002094__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04002095nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002097 __be32 err;
2098
2099 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
Takashi Iwaif6360ef2010-08-13 15:53:49 +02002100 if (!err) {
2101 struct path path = {
2102 .mnt = fhp->fh_export->ex_path.mnt,
2103 .dentry = fhp->fh_dentry,
2104 };
2105 if (vfs_statfs(&path, stat))
2106 err = nfserr_io;
2107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return err;
2109}
2110
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002111static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002112{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002113 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002114}
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116/*
2117 * Check for a user's access permissions to this inode.
2118 */
Al Viro6264d692006-10-19 23:28:58 -07002119__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07002120nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2121 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 struct inode *inode = dentry->d_inode;
2124 int err;
2125
J. Bruce Fieldsaea93392011-04-10 10:35:12 -04002126 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return 0;
2128#if 0
2129 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2130 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002131 (acc & NFSD_MAY_READ)? " read" : "",
2132 (acc & NFSD_MAY_WRITE)? " write" : "",
2133 (acc & NFSD_MAY_EXEC)? " exec" : "",
2134 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2135 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2136 (acc & NFSD_MAY_LOCK)? " lock" : "",
2137 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 inode->i_mode,
2139 IS_IMMUTABLE(inode)? " immut" : "",
2140 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08002141 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11002143 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144#endif
2145
2146 /* Normally we reject any write/sattr etc access on a read-only file
2147 * system. But if it is IRIX doing check on write-access for a
2148 * device special file, we ignore rofs.
2149 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002150 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2151 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08002152 if (exp_rdonly(rqstp, exp) ||
2153 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002155 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return nfserr_perm;
2157 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002158 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 return nfserr_perm;
2160
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002161 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 /* If we cannot rely on authentication in NLM requests,
2163 * just allow locks, otherwise require read permission, or
2164 * ownership
2165 */
2166 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2167 return 0;
2168 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002169 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
2171 /*
2172 * The file owner always gets access permission for accesses that
2173 * would normally be checked at open time. This is to make
2174 * file access work even when the client has done a fchmod(fd, 0).
2175 *
2176 * However, `cp foo bar' should fail nevertheless when bar is
2177 * readonly. A sensible way to do this might be to reject all
2178 * attempts to truncate a read-only file, because a creat() call
2179 * always implies file truncation.
2180 * ... but this isn't really fair. A process may reasonably call
2181 * ftruncate on an open file descriptor on a file with perm 000.
2182 * We must trust the client to do permission checking - using "ACCESS"
2183 * with NFSv3.
2184 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002185 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002186 uid_eq(inode->i_uid, current_fsuid()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 return 0;
2188
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002189 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04002190 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192 /* Allow read access to binaries even when mode 111 */
2193 if (err == -EACCES && S_ISREG(inode->i_mode) &&
J. Bruce Fieldsa0432262011-08-25 10:48:39 -04002194 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2195 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
Al Virof419a2e2008-07-22 00:07:17 -04002196 err = inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 return err? nfserrno(err) : 0;
2199}
2200
2201void
2202nfsd_racache_shutdown(void)
2203{
Jeff Layton54a66e52008-08-13 22:03:27 -04002204 struct raparms *raparm, *last_raparm;
2205 unsigned int i;
2206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04002208
2209 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2210 raparm = raparm_hash[i].pb_head;
2211 while(raparm) {
2212 last_raparm = raparm;
2213 raparm = raparm->p_next;
2214 kfree(last_raparm);
2215 }
2216 raparm_hash[i].pb_head = NULL;
2217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219/*
2220 * Initialize readahead param cache
2221 */
2222int
2223nfsd_racache_init(int cache_size)
2224{
2225 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002226 int j = 0;
2227 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002228 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Greg Banksfce14562006-10-04 02:15:49 -07002230
Jeff Layton54a66e52008-08-13 22:03:27 -04002231 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002233 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
2234 if (nperbucket < 2)
2235 nperbucket = 2;
2236 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002237
2238 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002239
2240 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002241 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002242
2243 raparm = &raparm_hash[i].pb_head;
2244 for (j = 0; j < nperbucket; j++) {
2245 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2246 if (!*raparm)
2247 goto out_nomem;
2248 raparm = &(*raparm)->p_next;
2249 }
2250 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002251 }
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 nfsdstats.ra_size = cache_size;
2254 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002255
2256out_nomem:
2257 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2258 nfsd_racache_shutdown();
2259 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260}
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002261
2262#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
2263struct posix_acl *
2264nfsd_get_posix_acl(struct svc_fh *fhp, int type)
2265{
2266 struct inode *inode = fhp->fh_dentry->d_inode;
2267 char *name;
2268 void *value = NULL;
2269 ssize_t size;
2270 struct posix_acl *acl;
2271
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002272 if (!IS_POSIXACL(inode))
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002273 return ERR_PTR(-EOPNOTSUPP);
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002274
2275 switch (type) {
2276 case ACL_TYPE_ACCESS:
2277 name = POSIX_ACL_XATTR_ACCESS;
2278 break;
2279 case ACL_TYPE_DEFAULT:
2280 name = POSIX_ACL_XATTR_DEFAULT;
2281 break;
2282 default:
2283 return ERR_PTR(-EOPNOTSUPP);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002284 }
2285
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002286 size = nfsd_getxattr(fhp->fh_dentry, name, &value);
2287 if (size < 0)
2288 return ERR_PTR(size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002289
Eric W. Biederman5f3a4a282012-09-10 20:17:44 -07002290 acl = posix_acl_from_xattr(&init_user_ns, value, size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002291 kfree(value);
2292 return acl;
2293}
2294
2295int
2296nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
2297{
2298 struct inode *inode = fhp->fh_dentry->d_inode;
2299 char *name;
2300 void *value = NULL;
2301 size_t size;
2302 int error;
2303
Al Viroacfa4382008-12-04 10:06:33 -05002304 if (!IS_POSIXACL(inode) ||
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002305 !inode->i_op->setxattr || !inode->i_op->removexattr)
2306 return -EOPNOTSUPP;
2307 switch(type) {
2308 case ACL_TYPE_ACCESS:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002309 name = POSIX_ACL_XATTR_ACCESS;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002310 break;
2311 case ACL_TYPE_DEFAULT:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002312 name = POSIX_ACL_XATTR_DEFAULT;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002313 break;
2314 default:
2315 return -EOPNOTSUPP;
2316 }
2317
2318 if (acl && acl->a_count) {
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002319 size = posix_acl_xattr_size(acl->a_count);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002320 value = kmalloc(size, GFP_KERNEL);
2321 if (!value)
2322 return -ENOMEM;
Eric W. Biederman5f3a4a282012-09-10 20:17:44 -07002323 error = posix_acl_to_xattr(&init_user_ns, acl, value, size);
Florin Malita9ccfc292006-05-20 14:59:58 -07002324 if (error < 0)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002325 goto getout;
Florin Malita9ccfc292006-05-20 14:59:58 -07002326 size = error;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002327 } else
2328 size = 0;
2329
Al Virobad0dcf2011-11-23 12:03:18 -05002330 error = fh_want_write(fhp);
Dave Hansen18f335a2008-02-15 14:37:38 -08002331 if (error)
2332 goto getout;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002333 if (size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002334 error = vfs_setxattr(fhp->fh_dentry, name, value, size, 0);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002335 else {
2336 if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
2337 error = 0;
2338 else {
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002339 error = vfs_removexattr(fhp->fh_dentry, name);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002340 if (error == -ENODATA)
2341 error = 0;
2342 }
2343 }
Al Virobad0dcf2011-11-23 12:03:18 -05002344 fh_drop_write(fhp);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002345
2346getout:
2347 kfree(value);
2348 return error;
2349}
2350#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */