blob: 3440dd8a4fb3bd3d4333fbc3395ab4b2bf4325ab [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#define MSNFS /* HACK HACK */
2/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * File operations used by nfsd. Some of these have been ripped from
4 * other parts of the kernel because they weren't exported, others
5 * are partial duplicates with added or changed functionality.
6 *
7 * Note that several functions dget() the dentry upon which they want
8 * to act, most notably those that create directory entries. Response
9 * dentry's are dput()'d if necessary in the release callback.
10 * So if you notice code paths that apparently fail to dput() the
11 * dentry, don't worry--they have been taken care of.
12 *
13 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
14 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/fs.h>
18#include <linux/file.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020019#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h>
Robert Love0eeca282005-07-12 17:06:03 -040023#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/xattr.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020026#include <linux/jhash.h>
27#include <linux/ima.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020029#include <asm/uaccess.h>
Ben Myersf5019122010-02-17 14:05:11 -060030#include <linux/exportfs.h>
31#include <linux/writeback.h>
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/nfs4_acl.h>
39#include <linux/nfsd_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 Viro9393bd02009-04-18 13:58:15 -040091 while (d_mountpoint(path.dentry) && follow_down(&path))
Al Viro91c9fa82009-04-18 02:42:05 -040092 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Al Viro91c9fa82009-04-18 02:42:05 -040094 exp2 = rqst_exp_get_by_name(rqstp, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (IS_ERR(exp2)) {
J. Bruce Fields3b6cee7bc2009-10-25 21:18:19 -040096 err = PTR_ERR(exp2);
97 /*
98 * We normally allow NFS clients to continue
99 * "underneath" a mountpoint that is not exported.
100 * The exception is V4ROOT, where no traversal is ever
101 * allowed without an explicit export of the new
102 * directory.
103 */
104 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
105 err = 0;
Al Viro91c9fa82009-04-18 02:42:05 -0400106 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 goto out;
108 }
Steve Dickson3c394dd2009-09-09 15:02:40 -0400109 if (nfsd_v4client(rqstp) ||
110 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 /* successfully crossed mount point */
Al Viro1644ccc2009-04-18 02:32:31 -0400112 /*
Al Viro91c9fa82009-04-18 02:42:05 -0400113 * This is subtle: path.dentry is *not* on path.mnt
114 * at this point. The only reason we are safe is that
115 * original mnt is pinned down by exp, so we should
116 * put path *before* putting exp
Al Viro1644ccc2009-04-18 02:32:31 -0400117 */
Al Viro91c9fa82009-04-18 02:42:05 -0400118 *dpp = path.dentry;
119 path.dentry = dentry;
Al Viro1644ccc2009-04-18 02:32:31 -0400120 *expp = exp2;
Al Viro91c9fa82009-04-18 02:42:05 -0400121 exp2 = exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Al Viro91c9fa82009-04-18 02:42:05 -0400123 path_put(&path);
124 exp_put(exp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125out:
126 return err;
127}
128
J. Bruce Fields289ede42009-09-26 20:32:24 -0400129static void follow_to_parent(struct path *path)
130{
131 struct dentry *dp;
132
133 while (path->dentry == path->mnt->mnt_root && follow_up(path))
134 ;
135 dp = dget_parent(path->dentry);
136 dput(path->dentry);
137 path->dentry = dp;
138}
139
140static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
141{
142 struct svc_export *exp2;
143 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
144 .dentry = dget(dparent)};
145
146 follow_to_parent(&path);
147
148 exp2 = rqst_exp_parent(rqstp, &path);
149 if (PTR_ERR(exp2) == -ENOENT) {
150 *dentryp = dget(dparent);
151 } else if (IS_ERR(exp2)) {
152 path_put(&path);
153 return PTR_ERR(exp2);
154 } else {
155 *dentryp = dget(path.dentry);
156 exp_put(*exp);
157 *exp = exp2;
158 }
159 path_put(&path);
160 return 0;
161}
162
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400163/*
164 * For nfsd purposes, we treat V4ROOT exports as though there was an
165 * export at *every* directory.
166 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -0400167int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400168{
169 if (d_mountpoint(dentry))
170 return 1;
171 if (!(exp->ex_flags & NFSEXP_V4ROOT))
172 return 0;
173 return dentry->d_inode != NULL;
174}
175
Al Viro6264d692006-10-19 23:28:58 -0700176__be32
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700177nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400178 const char *name, unsigned int len,
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700179 struct svc_export **exp_ret, struct dentry **dentry_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct svc_export *exp;
182 struct dentry *dparent;
183 struct dentry *dentry;
Al Viro6264d692006-10-19 23:28:58 -0700184 __be32 err;
185 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
188
189 /* Obtain dentry and export. */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200190 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (err)
192 return err;
193
194 dparent = fhp->fh_dentry;
195 exp = fhp->fh_export;
196 exp_get(exp);
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /* Lookup the name, but don't follow links */
199 if (isdotent(name, len)) {
200 if (len==1)
201 dentry = dget(dparent);
Jan Blunck54775492008-02-14 19:38:39 -0800202 else if (dparent != exp->ex_path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 dentry = dget_parent(dparent);
J. Bruce Fieldsfed83812009-09-26 16:53:01 -0400204 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 dentry = dget(dparent); /* .. == . just like at / */
206 else {
207 /* checking mountpoint crossing is very different when stepping up */
J. Bruce Fields289ede42009-09-26 20:32:24 -0400208 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
209 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212 } else {
213 fh_lock(fhp);
214 dentry = lookup_one_len(name, dparent, len);
Al Viro6264d692006-10-19 23:28:58 -0700215 host_err = PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (IS_ERR(dentry))
217 goto out_nfserr;
218 /*
219 * check if we have crossed a mount point ...
220 */
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400221 if (nfsd_mountpoint(dentry, exp)) {
Al Viro6264d692006-10-19 23:28:58 -0700222 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 dput(dentry);
224 goto out_nfserr;
225 }
226 }
227 }
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700228 *dentry_ret = dentry;
229 *exp_ret = exp;
230 return 0;
231
232out_nfserr:
233 exp_put(exp);
234 return nfserrno(host_err);
235}
236
237/*
238 * Look up one component of a pathname.
239 * N.B. After this call _both_ fhp and resfh need an fh_put
240 *
241 * If the lookup would cross a mountpoint, and the mounted filesystem
242 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
243 * accepted as it stands and the mounted directory is
244 * returned. Otherwise the covered directory is returned.
245 * NOTE: this mountpoint crossing is not supported properly by all
246 * clients and is explicitly disallowed for NFSv3
247 * NeilBrown <neilb@cse.unsw.edu.au>
248 */
249__be32
250nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400251 unsigned int len, struct svc_fh *resfh)
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700252{
253 struct svc_export *exp;
254 struct dentry *dentry;
255 __be32 err;
256
257 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
258 if (err)
259 return err;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700260 err = check_nfsd_access(exp, rqstp);
261 if (err)
262 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /*
264 * Note: we compose the file handle now, but as the
265 * dentry may be negative, it may need to be updated.
266 */
267 err = fh_compose(resfh, exp, dentry, fhp);
268 if (!err && !dentry->d_inode)
269 err = nfserr_noent;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700270out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 exp_put(exp);
273 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Ben Myersf5019122010-02-17 14:05:11 -0600276/*
277 * Commit metadata changes to stable storage.
278 */
279static int
280commit_metadata(struct svc_fh *fhp)
281{
282 struct inode *inode = fhp->fh_dentry->d_inode;
283 const struct export_operations *export_ops = inode->i_sb->s_export_op;
284 int error = 0;
285
286 if (!EX_ISSYNC(fhp->fh_export))
287 return 0;
288
289 if (export_ops->commit_metadata) {
290 error = export_ops->commit_metadata(inode);
291 } else {
292 struct writeback_control wbc = {
293 .sync_mode = WB_SYNC_ALL,
294 .nr_to_write = 0, /* metadata only */
295 };
296
297 error = sync_inode(inode, &wbc);
298 }
299
300 return error;
301}
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
304 * Set various file attributes.
305 * N.B. After this call fhp needs an fh_put
306 */
Al Viro6264d692006-10-19 23:28:58 -0700307__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
309 int check_guard, time_t guardtime)
310{
311 struct dentry *dentry;
312 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200313 int accmode = NFSD_MAY_SATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 int ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700315 __be32 err;
316 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 int size_change = 0;
318
319 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200320 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (iap->ia_valid & ATTR_SIZE)
322 ftype = S_IFREG;
323
324 /* Get inode */
325 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800326 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 goto out;
328
329 dentry = fhp->fh_dentry;
330 inode = dentry->d_inode;
331
NeilBrown15b7a1b2005-11-07 01:00:23 -0800332 /* Ignore any mode updates on symlinks */
333 if (S_ISLNK(inode->i_mode))
334 iap->ia_valid &= ~ATTR_MODE;
335
336 if (!iap->ia_valid)
337 goto out;
338
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000339 /*
340 * NFSv2 does not differentiate between "set-[ac]time-to-now"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 * which only requires access, and "set-[ac]time-to-X" which
342 * requires ownership.
343 * So if it looks like it might be "set both to the same time which
344 * is close to now", and if inode_change_ok fails, then we
345 * convert to "set to now" instead of "set to explicit time"
346 *
347 * We only call inode_change_ok as the last test as technically
348 * it is not an interface that we should be using. It is only
349 * valid if the filesystem does not define it's own i_op->setattr.
350 */
351#define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
352#define MAX_TOUCH_TIME_ERROR (30*60)
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000353 if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
354 iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
355 /*
356 * Looks probable.
357 *
358 * Now just make sure time is in the right ballpark.
359 * Solaris, at least, doesn't seem to care what the time
360 * request is. We require it be within 30 minutes of now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 */
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000362 time_t delta = iap->ia_atime.tv_sec - get_seconds();
363 if (delta < 0)
364 delta = -delta;
365 if (delta < MAX_TOUCH_TIME_ERROR &&
366 inode_change_ok(inode, iap) != 0) {
367 /*
368 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
369 * This will cause notify_change to set these times
370 * to "now"
371 */
372 iap->ia_valid &= ~BOTH_TIME_SET;
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000376 /*
377 * The size case is special.
378 * It changes the file as well as the attributes.
379 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (iap->ia_valid & ATTR_SIZE) {
381 if (iap->ia_size < inode->i_size) {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200382 err = nfsd_permission(rqstp, fhp->fh_export, dentry,
383 NFSD_MAY_TRUNC|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (err)
385 goto out;
386 }
387
388 /*
389 * If we are changing the size of the file, then
390 * we need to break all leases.
391 */
Al Viro8737c932009-12-24 06:47:55 -0500392 host_err = break_lease(inode, O_WRONLY | O_NONBLOCK);
Al Viro6264d692006-10-19 23:28:58 -0700393 if (host_err == -EWOULDBLOCK)
394 host_err = -ETIMEDOUT;
395 if (host_err) /* ENOMEM or EWOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto out_nfserr;
397
Al Viro6264d692006-10-19 23:28:58 -0700398 host_err = get_write_access(inode);
399 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 goto out_nfserr;
401
402 size_change = 1;
Al Viro6264d692006-10-19 23:28:58 -0700403 host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
404 if (host_err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 put_write_access(inode);
406 goto out_nfserr;
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
Jeff Laytonca456252008-04-16 16:28:47 -0400410 /* sanitize the mode change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (iap->ia_valid & ATTR_MODE) {
412 iap->ia_mode &= S_IALLUGO;
Jeff Laytondee32092008-04-16 16:28:46 -0400413 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
Jeff Laytonca456252008-04-16 16:28:47 -0400414 }
415
416 /* Revoke setuid/setgid on chown */
Sachin S. Prabhu0953e622009-02-23 16:22:03 +0000417 if (!S_ISDIR(inode->i_mode) &&
418 (((iap->ia_valid & ATTR_UID) && iap->ia_uid != inode->i_uid) ||
419 ((iap->ia_valid & ATTR_GID) && iap->ia_gid != inode->i_gid))) {
Jeff Laytonca456252008-04-16 16:28:47 -0400420 iap->ia_valid |= ATTR_KILL_PRIV;
421 if (iap->ia_valid & ATTR_MODE) {
422 /* we're setting mode too, just clear the s*id bits */
Jeff Layton8a0ce7d2007-10-18 03:05:19 -0700423 iap->ia_mode &= ~S_ISUID;
Jeff Laytonca456252008-04-16 16:28:47 -0400424 if (iap->ia_mode & S_IXGRP)
425 iap->ia_mode &= ~S_ISGID;
426 } else {
427 /* set ATTR_KILL_* bits and let VFS handle it */
428 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
Jeff Layton8a0ce7d2007-10-18 03:05:19 -0700429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* Change the attributes. */
433
434 iap->ia_valid |= ATTR_CTIME;
435
436 err = nfserr_notsync;
437 if (!check_guard || guardtime == inode->i_ctime.tv_sec) {
438 fh_lock(fhp);
Al Viro6264d692006-10-19 23:28:58 -0700439 host_err = notify_change(dentry, iap);
440 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 fh_unlock(fhp);
442 }
443 if (size_change)
444 put_write_access(inode);
445 if (!err)
Christoph Hellwigb160fda2010-06-01 21:59:18 +0200446 commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447out:
448 return err;
449
450out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700451 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 goto out;
453}
454
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800455#if defined(CONFIG_NFSD_V2_ACL) || \
456 defined(CONFIG_NFSD_V3_ACL) || \
457 defined(CONFIG_NFSD_V4)
458static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
459{
460 ssize_t buflen;
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530461 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800463 buflen = vfs_getxattr(dentry, key, NULL, 0);
464 if (buflen <= 0)
465 return buflen;
466
467 *buf = kmalloc(buflen, GFP_KERNEL);
468 if (!*buf)
469 return -ENOMEM;
470
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530471 ret = vfs_getxattr(dentry, key, *buf, buflen);
472 if (ret < 0)
473 kfree(*buf);
474 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800475}
476#endif
477
478#if defined(CONFIG_NFSD_V4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479static int
480set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
481{
482 int len;
483 size_t buflen;
484 char *buf = NULL;
485 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 buflen = posix_acl_xattr_size(pacl->a_count);
488 buf = kmalloc(buflen, GFP_KERNEL);
489 error = -ENOMEM;
490 if (buf == NULL)
491 goto out;
492
493 len = posix_acl_to_xattr(pacl, buf, buflen);
494 if (len < 0) {
495 error = len;
496 goto out;
497 }
498
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800499 error = vfs_setxattr(dentry, key, buf, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500out:
501 kfree(buf);
502 return error;
503}
504
Al Viro6264d692006-10-19 23:28:58 -0700505__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
507 struct nfs4_acl *acl)
508{
Al Viro6264d692006-10-19 23:28:58 -0700509 __be32 error;
510 int host_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct dentry *dentry;
512 struct inode *inode;
513 struct posix_acl *pacl = NULL, *dpacl = NULL;
514 unsigned int flags = 0;
515
516 /* Get inode */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200517 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (error)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700519 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 dentry = fhp->fh_dentry;
522 inode = dentry->d_inode;
523 if (S_ISDIR(inode->i_mode))
524 flags = NFS4_ACL_DIR;
525
Al Viro6264d692006-10-19 23:28:58 -0700526 host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
527 if (host_error == -EINVAL) {
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700528 return nfserr_attrnotsupp;
Al Viro6264d692006-10-19 23:28:58 -0700529 } else if (host_error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 goto out_nfserr;
531
Al Viro6264d692006-10-19 23:28:58 -0700532 host_error = set_nfsv4_acl_one(dentry, pacl, POSIX_ACL_XATTR_ACCESS);
533 if (host_error < 0)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700534 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700536 if (S_ISDIR(inode->i_mode))
Al Viro6264d692006-10-19 23:28:58 -0700537 host_error = set_nfsv4_acl_one(dentry, dpacl, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700539out_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 posix_acl_release(pacl);
541 posix_acl_release(dpacl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542out_nfserr:
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800543 if (host_error == -EOPNOTSUPP)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700544 return nfserr_attrnotsupp;
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800545 else
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700546 return nfserrno(host_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
549static struct posix_acl *
550_get_posix_acl(struct dentry *dentry, char *key)
551{
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800552 void *buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 struct posix_acl *pacl = NULL;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800554 int buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800556 buflen = nfsd_getxattr(dentry, key, &buf);
557 if (!buflen)
558 buflen = -ENODATA;
559 if (buflen <= 0)
560 return ERR_PTR(buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 pacl = posix_acl_from_xattr(buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 kfree(buf);
564 return pacl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
567int
568nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
569{
570 struct inode *inode = dentry->d_inode;
571 int error = 0;
572 struct posix_acl *pacl = NULL, *dpacl = NULL;
573 unsigned int flags = 0;
574
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700575 pacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_ACCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
577 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
578 if (IS_ERR(pacl)) {
579 error = PTR_ERR(pacl);
580 pacl = NULL;
581 goto out;
582 }
583
584 if (S_ISDIR(inode->i_mode)) {
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700585 dpacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
587 dpacl = NULL;
588 else if (IS_ERR(dpacl)) {
589 error = PTR_ERR(dpacl);
590 dpacl = NULL;
591 goto out;
592 }
593 flags = NFS4_ACL_DIR;
594 }
595
596 *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
597 if (IS_ERR(*acl)) {
598 error = PTR_ERR(*acl);
599 *acl = NULL;
600 }
601 out:
602 posix_acl_release(pacl);
603 posix_acl_release(dpacl);
604 return error;
605}
606
607#endif /* defined(CONFIG_NFS_V4) */
608
609#ifdef CONFIG_NFSD_V3
610/*
611 * Check server access rights to a file system object
612 */
613struct accessmap {
614 u32 access;
615 int how;
616};
617static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200618 { NFS3_ACCESS_READ, NFSD_MAY_READ },
619 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
620 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
621 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 { 0, 0 }
624};
625
626static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200627 { NFS3_ACCESS_READ, NFSD_MAY_READ },
628 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
629 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
630 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
631 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 { 0, 0 }
634};
635
636static struct accessmap nfs3_anyaccess[] = {
637 /* Some clients - Solaris 2.6 at least, make an access call
638 * to the server to check for access for things like /dev/null
639 * (which really, the server doesn't care about). So
640 * We provide simple access checking for them, looking
641 * mainly at mode bits, and we make sure to ignore read-only
642 * filesystem checks
643 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200644 { NFS3_ACCESS_READ, NFSD_MAY_READ },
645 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
646 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
647 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 { 0, 0 }
650};
651
Al Viro6264d692006-10-19 23:28:58 -0700652__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
654{
655 struct accessmap *map;
656 struct svc_export *export;
657 struct dentry *dentry;
658 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700659 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200661 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (error)
663 goto out;
664
665 export = fhp->fh_export;
666 dentry = fhp->fh_dentry;
667
668 if (S_ISREG(dentry->d_inode->i_mode))
669 map = nfs3_regaccess;
670 else if (S_ISDIR(dentry->d_inode->i_mode))
671 map = nfs3_diraccess;
672 else
673 map = nfs3_anyaccess;
674
675
676 query = *access;
677 for (; map->access; map++) {
678 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700679 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 sresult |= map->access;
682
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700683 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 switch (err2) {
685 case nfs_ok:
686 result |= map->access;
687 break;
688
689 /* the following error codes just mean the access was not allowed,
690 * rather than an error occurred */
691 case nfserr_rofs:
692 case nfserr_acces:
693 case nfserr_perm:
694 /* simply don't "or" in the access bit. */
695 break;
696 default:
697 error = err2;
698 goto out;
699 }
700 }
701 }
702 *access = result;
703 if (supported)
704 *supported = sresult;
705
706 out:
707 return error;
708}
709#endif /* CONFIG_NFSD_V3 */
710
711
712
713/*
714 * Open an existing file or directory.
715 * The access argument indicates the type of open (read/write/lock)
716 * N.B. After this call fhp needs an fh_put
717 */
Al Viro6264d692006-10-19 23:28:58 -0700718__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
720 int access, struct file **filp)
721{
722 struct dentry *dentry;
723 struct inode *inode;
Al Viro6264d692006-10-19 23:28:58 -0700724 int flags = O_RDONLY|O_LARGEFILE;
725 __be32 err;
726 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
David Howellse0e81732009-09-02 09:13:40 +0100728 validate_process_creds();
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 /*
731 * If we get here, then the client has already done an "open",
732 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
733 * in case a chmod has now revoked permission.
734 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200735 err = fh_verify(rqstp, fhp, type, access | NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (err)
737 goto out;
738
739 dentry = fhp->fh_dentry;
740 inode = dentry->d_inode;
741
742 /* Disallow write access to files with the append-only bit set
743 * or any access when mandatory locking enabled
744 */
745 err = nfserr_perm;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200746 if (IS_APPEND(inode) && (access & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400748 /*
749 * We must ignore files (but only files) which might have mandatory
750 * locks on them because there is no way to know if the accesser has
751 * the lock.
752 */
753 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 goto out;
755
756 if (!inode->i_fop)
757 goto out;
758
759 /*
760 * Check to see if there are any leases on this file.
761 * This may block while leases are broken.
762 */
Al Viro8737c932009-12-24 06:47:55 -0500763 host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0));
Al Viro6264d692006-10-19 23:28:58 -0700764 if (host_err == -EWOULDBLOCK)
765 host_err = -ETIMEDOUT;
766 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 goto out_nfserr;
768
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200769 if (access & NFSD_MAY_WRITE) {
770 if (access & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700771 flags = O_RDWR|O_LARGEFILE;
772 else
773 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Jan Blunck54775492008-02-14 19:38:39 -0800775 *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt),
David Howells033a6662009-07-02 14:35:32 +0100776 flags, current_cred());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (IS_ERR(*filp))
Al Viro6264d692006-10-19 23:28:58 -0700778 host_err = PTR_ERR(*filp);
Chuck Ebbertaeaa5cc2010-02-15 18:07:39 -0500779 else
780 host_err = ima_file_check(*filp, access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700782 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783out:
David Howellse0e81732009-09-02 09:13:40 +0100784 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return err;
786}
787
788/*
789 * Close a file.
790 */
791void
792nfsd_close(struct file *filp)
793{
794 fput(filp);
795}
796
J. Bruce Fields9a8d2482009-01-06 13:37:03 -0500797/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 * Obtain the readahead parameters for the file
799 * specified by (dev, ino).
800 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802static inline struct raparms *
803nfsd_get_raparms(dev_t dev, ino_t ino)
804{
805 struct raparms *ra, **rap, **frap = NULL;
806 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700807 unsigned int hash;
808 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Greg Banksfce14562006-10-04 02:15:49 -0700810 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
811 rab = &raparm_hash[hash];
812
813 spin_lock(&rab->pb_lock);
814 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (ra->p_ino == ino && ra->p_dev == dev)
816 goto found;
817 depth++;
818 if (ra->p_count == 0)
819 frap = rap;
820 }
821 depth = nfsdstats.ra_size*11/10;
822 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700823 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return NULL;
825 }
826 rap = frap;
827 ra = *frap;
828 ra->p_dev = dev;
829 ra->p_ino = ino;
830 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700831 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832found:
Greg Banksfce14562006-10-04 02:15:49 -0700833 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700835 ra->p_next = rab->pb_head;
836 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838 ra->p_count++;
839 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700840 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return ra;
842}
843
844/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200845 * Grab and keep cached pages associated with a file in the svc_rqst
846 * so that they can be passed to the network sendmsg/sendpage routines
847 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 */
849static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200850nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
851 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Jens Axboecf8208d2007-06-12 21:22:14 +0200853 struct svc_rqst *rqstp = sd->u.data;
NeilBrown44524352006-10-04 02:15:46 -0700854 struct page **pp = rqstp->rq_respages + rqstp->rq_resused;
Jens Axboecf8208d2007-06-12 21:22:14 +0200855 struct page *page = buf->page;
856 size_t size;
857 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Jens Axboecac36bb02007-06-14 13:10:48 +0200859 ret = buf->ops->confirm(pipe, buf);
Jens Axboecf8208d2007-06-12 21:22:14 +0200860 if (unlikely(ret))
861 return ret;
862
863 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (rqstp->rq_res.page_len == 0) {
866 get_page(page);
NeilBrown44524352006-10-04 02:15:46 -0700867 put_page(*pp);
868 *pp = page;
869 rqstp->rq_resused++;
Jens Axboecf8208d2007-06-12 21:22:14 +0200870 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700872 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 get_page(page);
NeilBrown250f3912007-01-26 00:56:59 -0800874 if (*pp)
875 put_page(*pp);
NeilBrown44524352006-10-04 02:15:46 -0700876 *pp = page;
877 rqstp->rq_resused++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700879 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return size;
883}
884
Jens Axboecf8208d2007-06-12 21:22:14 +0200885static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
886 struct splice_desc *sd)
887{
888 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
889}
890
Dave Hansena8754be2007-10-16 23:31:15 -0700891static inline int svc_msnfs(struct svc_fh *ffhp)
892{
893#ifdef MSNFS
894 return (ffhp->fh_export->ex_flags & NFSEXP_MSNFS);
895#else
896 return 0;
897#endif
898}
899
Al Viro6264d692006-10-19 23:28:58 -0700900static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
902 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
903{
904 struct inode *inode;
905 struct raparms *ra;
906 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700907 __be32 err;
908 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 err = nfserr_perm;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800911 inode = file->f_path.dentry->d_inode;
Dave Hansena8754be2007-10-16 23:31:15 -0700912
913 if (svc_msnfs(fhp) && !lock_may_read(inode, offset, *count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 /* Get readahead parameters */
917 ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
918
919 if (ra && ra->p_set)
920 file->f_ra = ra->p_ra;
921
Jens Axboecf8208d2007-06-12 21:22:14 +0200922 if (file->f_op->splice_read && rqstp->rq_splice_ok) {
923 struct splice_desc sd = {
924 .len = 0,
925 .total_len = *count,
926 .pos = offset,
927 .u.data = rqstp,
928 };
929
Jens Axboe4fbef202007-07-13 22:42:20 +0200930 rqstp->rq_resused = 1;
Jens Axboecf8208d2007-06-12 21:22:14 +0200931 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 } else {
933 oldfs = get_fs();
934 set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -0700935 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 set_fs(oldfs);
937 }
938
939 /* Write back readahead params */
940 if (ra) {
Greg Banksfce14562006-10-04 02:15:49 -0700941 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
942 spin_lock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 ra->p_ra = file->f_ra;
944 ra->p_set = 1;
945 ra->p_count--;
Greg Banksfce14562006-10-04 02:15:49 -0700946 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948
Al Viro6264d692006-10-19 23:28:58 -0700949 if (host_err >= 0) {
950 nfsdstats.io_read += host_err;
951 *count = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 err = 0;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800953 fsnotify_access(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 } else
Al Viro6264d692006-10-19 23:28:58 -0700955 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956out:
957 return err;
958}
959
Neil Brown9f708e42006-01-06 00:19:59 -0800960static void kill_suid(struct dentry *dentry)
961{
962 struct iattr ia;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700963 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
Neil Brown9f708e42006-01-06 00:19:59 -0800964
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800965 mutex_lock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -0800966 notify_change(dentry, &ia);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800967 mutex_unlock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -0800968}
969
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700970/*
971 * Gathered writes: If another process is currently writing to the file,
972 * there's a high chance this is another nfsd (triggered by a bulk write
973 * from a client's biod). Rather than syncing the file with each write
974 * request, we sleep for 10 msec.
975 *
976 * I don't know if this roughly approximates C. Juszak's idea of
977 * gathered writes, but it's a nice and simple solution (IMHO), and it
978 * seems to work:-)
979 *
980 * Note: we do this only in the NFSv2 case, since v3 and higher have a
981 * better tool (separate unstable writes and commits) for solving this
982 * problem.
983 */
984static int wait_for_concurrent_writes(struct file *file)
985{
986 struct inode *inode = file->f_path.dentry->d_inode;
987 static ino_t last_ino;
988 static dev_t last_dev;
989 int err = 0;
990
991 if (atomic_read(&inode->i_writecount) > 1
992 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
993 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
994 msleep(10);
995 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
996 }
997
998 if (inode->i_state & I_DIRTY) {
999 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig6a68f892009-12-25 17:45:13 +01001000 err = vfs_fsync(file, file->f_path.dentry, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -07001001 }
1002 last_ino = inode->i_ino;
1003 last_dev = inode->i_sb->s_dev;
1004 return err;
1005}
1006
Al Viro6264d692006-10-19 23:28:58 -07001007static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1009 loff_t offset, struct kvec *vec, int vlen,
David Shaw31dec252009-03-05 20:16:14 -05001010 unsigned long *cnt, int *stablep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 struct svc_export *exp;
1013 struct dentry *dentry;
1014 struct inode *inode;
1015 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001016 __be32 err = 0;
1017 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 int stable = *stablep;
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001019 int use_wgather;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
NeilBrown45bd3b32006-01-18 17:43:50 -08001021#ifdef MSNFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 err = nfserr_perm;
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
David Shaw31dec252009-03-05 20:16:14 -05001025 (!lock_may_write(file->f_path.dentry->d_inode, offset, *cnt)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 goto out;
1027#endif
1028
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001029 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 inode = dentry->d_inode;
1031 exp = fhp->fh_export;
1032
1033 /*
1034 * Request sync writes if
1035 * - the sync export option has been set, or
1036 * - the client requested O_SYNC behavior (NFSv3 feature).
1037 * - The file system doesn't support fsync().
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001038 * When NFSv2 gathered writes have been configured for this volume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 * flushing the data to disk is handled separately below.
1040 */
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001041 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Harvey Harrison3ba15142008-02-20 12:49:02 -08001043 if (!file->f_op->fsync) {/* COMMIT3 cannot work */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 stable = 2;
1045 *stablep = 2; /* FILE_SYNC */
1046 }
1047
1048 if (!EX_ISSYNC(exp))
1049 stable = 0;
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001050 if (stable && !use_wgather) {
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07001051 spin_lock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 file->f_flags |= O_SYNC;
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07001053 spin_unlock(&file->f_lock);
1054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 /* Write the data. */
1057 oldfs = get_fs(); set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -07001058 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001060 if (host_err < 0)
1061 goto out_nfserr;
1062 *cnt = host_err;
1063 nfsdstats.io_write += host_err;
1064 fsnotify_modify(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 /* clear setuid/setgid flag after write */
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001067 if (inode->i_mode & (S_ISUID | S_ISGID))
Neil Brown9f708e42006-01-06 00:19:59 -08001068 kill_suid(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001070 if (stable && use_wgather)
J. Bruce Fieldsd911df72009-06-15 16:03:53 -07001071 host_err = wait_for_concurrent_writes(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001073out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001074 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001075 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001077 else
Al Viro6264d692006-10-19 23:28:58 -07001078 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079out:
1080 return err;
1081}
1082
1083/*
1084 * Read data from a file. count must contain the requested read count
1085 * on entry. On return, *count contains the number of bytes actually read.
1086 * N.B. After this call fhp needs an fh_put
1087 */
Al Viro6264d692006-10-19 23:28:58 -07001088__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1090 loff_t offset, struct kvec *vec, int vlen,
1091 unsigned long *count)
1092{
Al Viro6264d692006-10-19 23:28:58 -07001093 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001096 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001097 NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (err)
1099 goto out;
1100 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1101 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001102 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (err)
1104 goto out;
1105 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1106 nfsd_close(file);
1107 }
1108out:
1109 return err;
1110}
1111
1112/*
1113 * Write data to a file.
1114 * The stable flag requests synchronous writes.
1115 * N.B. After this call fhp needs an fh_put
1116 */
Al Viro6264d692006-10-19 23:28:58 -07001117__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
David Shaw31dec252009-03-05 20:16:14 -05001119 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 int *stablep)
1121{
Al Viro6264d692006-10-19 23:28:58 -07001122 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001125 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001126 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (err)
1128 goto out;
1129 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1130 stablep);
1131 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001132 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (err)
1134 goto out;
1135
1136 if (cnt)
1137 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1138 cnt, stablep);
1139 nfsd_close(file);
1140 }
1141out:
1142 return err;
1143}
1144
1145#ifdef CONFIG_NFSD_V3
1146/*
1147 * Commit all pending writes to stable storage.
Trond Myklebustaa696a62010-01-29 16:44:25 -05001148 *
1149 * Note: we only guarantee that data that lies within the range specified
1150 * by the 'offset' and 'count' parameters will be synced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 *
1152 * Unfortunately we cannot lock the file to make sure we return full WCC
1153 * data to the client, as locking happens lower down in the filesystem.
1154 */
Al Viro6264d692006-10-19 23:28:58 -07001155__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1157 loff_t offset, unsigned long count)
1158{
1159 struct file *file;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001160 loff_t end = LLONG_MAX;
1161 __be32 err = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Trond Myklebustaa696a62010-01-29 16:44:25 -05001163 if (offset < 0)
1164 goto out;
1165 if (count != 0) {
1166 end = offset + (loff_t)count - 1;
1167 if (end < offset)
1168 goto out;
1169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001171 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
1172 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001173 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (EX_ISSYNC(fhp->fh_export)) {
Trond Myklebustaa696a62010-01-29 16:44:25 -05001175 int err2 = vfs_fsync_range(file, file->f_path.dentry,
1176 offset, end, 0);
1177
1178 if (err2 != -EINVAL)
1179 err = nfserrno(err2);
1180 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 err = nfserr_notsupp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183
1184 nfsd_close(file);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001185out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return err;
1187}
1188#endif /* CONFIG_NFSD_V3 */
1189
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001190static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001191nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1192 struct iattr *iap)
1193{
1194 /*
1195 * Mode has already been set earlier in create:
1196 */
1197 iap->ia_valid &= ~ATTR_MODE;
1198 /*
1199 * Setting uid/gid works only for root. Irix appears to
1200 * send along the gid on create when it tries to implement
1201 * setgid directories via NFS:
1202 */
David Howells5cc0a842008-11-14 10:38:58 +11001203 if (current_fsuid() != 0)
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001204 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1205 if (iap->ia_valid)
1206 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1207 return 0;
1208}
1209
wengang wang4ac35c22009-02-10 11:27:51 +08001210/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1211 * setting size to 0 may fail for some specific file systems by the permission
1212 * checking which requires WRITE permission but the mode is 000.
1213 * we ignore the resizing(to 0) on the just new created file, since the size is
1214 * 0 after file created.
1215 *
1216 * call this only after vfs_create() is called.
1217 * */
1218static void
1219nfsd_check_ignore_resizing(struct iattr *iap)
1220{
1221 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1222 iap->ia_valid &= ~ATTR_SIZE;
1223}
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225/*
1226 * Create a file (regular, directory, device, fifo); UNIX sockets
1227 * not yet implemented.
1228 * If the response fh has been verified, the parent directory should
1229 * already be locked. Note that the parent directory is left locked.
1230 *
1231 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1232 */
Al Viro6264d692006-10-19 23:28:58 -07001233__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1235 char *fname, int flen, struct iattr *iap,
1236 int type, dev_t rdev, struct svc_fh *resfhp)
1237{
1238 struct dentry *dentry, *dchild = NULL;
1239 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001240 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001241 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001242 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 err = nfserr_perm;
1245 if (!flen)
1246 goto out;
1247 err = nfserr_exist;
1248 if (isdotent(fname, flen))
1249 goto out;
1250
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001251 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (err)
1253 goto out;
1254
1255 dentry = fhp->fh_dentry;
1256 dirp = dentry->d_inode;
1257
1258 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001259 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 goto out;
1261 /*
1262 * Check whether the response file handle has been verified yet.
1263 * If it has, the parent directory should already be locked.
1264 */
1265 if (!resfhp->fh_dentry) {
1266 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001267 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001269 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (IS_ERR(dchild))
1271 goto out_nfserr;
1272 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1273 if (err)
1274 goto out;
1275 } else {
1276 /* called from nfsd_proc_create */
1277 dchild = dget(resfhp->fh_dentry);
1278 if (!fhp->fh_locked) {
1279 /* not actually possible */
1280 printk(KERN_ERR
1281 "nfsd_create: parent %s/%s not locked!\n",
1282 dentry->d_parent->d_name.name,
1283 dentry->d_name.name);
Al Virod75f2b92006-01-18 17:43:44 -08001284 err = nfserr_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 goto out;
1286 }
1287 }
1288 /*
1289 * Make sure the child dentry is still negative ...
1290 */
1291 err = nfserr_exist;
1292 if (dchild->d_inode) {
1293 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1294 dentry->d_name.name, dchild->d_name.name);
1295 goto out;
1296 }
1297
1298 if (!(iap->ia_valid & ATTR_MODE))
1299 iap->ia_mode = 0;
1300 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1301
Miklos Szeredi07cad1d2008-07-01 15:38:35 +02001302 err = nfserr_inval;
1303 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1304 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1305 type);
1306 goto out;
1307 }
1308
1309 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1310 if (host_err)
1311 goto out_nfserr;
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /*
1314 * Get the dir op function pointer.
1315 */
J. Bruce Fields088406b2006-11-08 17:44:59 -08001316 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 switch (type) {
1318 case S_IFREG:
Al Viro6264d692006-10-19 23:28:58 -07001319 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
wengang wang4ac35c22009-02-10 11:27:51 +08001320 if (!host_err)
1321 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 break;
1323 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001324 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 break;
1326 case S_IFCHR:
1327 case S_IFBLK:
1328 case S_IFIFO:
1329 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001330 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 break;
Dave Hansen463c3192008-02-15 14:37:57 -08001332 }
1333 if (host_err < 0) {
1334 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1335 goto out_nfserr;
1336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Ben Myersf5019122010-02-17 14:05:11 -06001338 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Ben Myersf5019122010-02-17 14:05:11 -06001340 /*
1341 * nfsd_setattr already committed the child. Transactional filesystems
1342 * had a chance to commit changes for both parent and child
1343 * simultaneously making the following commit_metadata a noop.
1344 */
1345 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001346 if (err2)
1347 err = err2;
Dave Hansen463c3192008-02-15 14:37:57 -08001348 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 /*
1350 * Update the file handle to get the new inode info.
1351 */
1352 if (!err)
1353 err = fh_update(resfhp);
1354out:
1355 if (dchild && !IS_ERR(dchild))
1356 dput(dchild);
1357 return err;
1358
1359out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001360 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 goto out;
1362}
1363
1364#ifdef CONFIG_NFSD_V3
1365/*
1366 * NFSv3 version of nfsd_create
1367 */
Al Viro6264d692006-10-19 23:28:58 -07001368__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
1370 char *fname, int flen, struct iattr *iap,
1371 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001372 int *truncp, int *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct dentry *dentry, *dchild = NULL;
1375 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001376 __be32 err;
1377 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 err = nfserr_perm;
1381 if (!flen)
1382 goto out;
1383 err = nfserr_exist;
1384 if (isdotent(fname, flen))
1385 goto out;
1386 if (!(iap->ia_valid & ATTR_MODE))
1387 iap->ia_mode = 0;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001388 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if (err)
1390 goto out;
1391
1392 dentry = fhp->fh_dentry;
1393 dirp = dentry->d_inode;
1394
1395 /* Get all the sanity checks out of the way before
1396 * we lock the parent. */
1397 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001398 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 goto out;
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001400 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 /*
1403 * Compose the response file handle.
1404 */
1405 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001406 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (IS_ERR(dchild))
1408 goto out_nfserr;
1409
1410 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1411 if (err)
1412 goto out;
1413
1414 if (createmode == NFS3_CREATE_EXCLUSIVE) {
Peter Staubachc3978522007-01-26 00:57:00 -08001415 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001416 * the high bit set, so just clear the high bits. If this is
1417 * ever changed to use different attrs for storing the
1418 * verifier, then do_open_lookup() will also need to be fixed
1419 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 */
1421 v_mtime = verifier[0]&0x7fffffff;
1422 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424
Dave Hansen463c3192008-02-15 14:37:57 -08001425 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1426 if (host_err)
1427 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (dchild->d_inode) {
1429 err = 0;
1430
1431 switch (createmode) {
1432 case NFS3_CREATE_UNCHECKED:
1433 if (! S_ISREG(dchild->d_inode->i_mode))
1434 err = nfserr_exist;
1435 else if (truncp) {
1436 /* in nfsv4, we need to treat this case a little
1437 * differently. we don't want to truncate the
1438 * file now; this would be wrong if the OPEN
1439 * fails for some other reason. furthermore,
1440 * if the size is nonzero, we should ignore it
1441 * according to spec!
1442 */
1443 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1444 }
1445 else {
1446 iap->ia_valid &= ATTR_SIZE;
1447 goto set_attr;
1448 }
1449 break;
1450 case NFS3_CREATE_EXCLUSIVE:
1451 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1452 && dchild->d_inode->i_atime.tv_sec == v_atime
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 && dchild->d_inode->i_size == 0 )
1454 break;
1455 /* fallthru */
1456 case NFS3_CREATE_GUARDED:
1457 err = nfserr_exist;
1458 }
Dave Hansen463c3192008-02-15 14:37:57 -08001459 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 goto out;
1461 }
1462
Al Viro6264d692006-10-19 23:28:58 -07001463 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
Dave Hansen463c3192008-02-15 14:37:57 -08001464 if (host_err < 0) {
1465 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001467 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001468 if (created)
1469 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
wengang wang4ac35c22009-02-10 11:27:51 +08001471 nfsd_check_ignore_resizing(iap);
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (createmode == NFS3_CREATE_EXCLUSIVE) {
Peter Staubachc3978522007-01-26 00:57:00 -08001474 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001476 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 /* XXX someone who knows this better please fix it for nsec */
1478 iap->ia_mtime.tv_sec = v_mtime;
1479 iap->ia_atime.tv_sec = v_atime;
1480 iap->ia_mtime.tv_nsec = 0;
1481 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001485 err = nfsd_create_setattr(rqstp, resfhp, iap);
1486
1487 /*
1488 * nfsd_setattr already committed the child (and possibly also the parent).
1489 */
1490 if (!err)
1491 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001492
Dave Hansen463c3192008-02-15 14:37:57 -08001493 mnt_drop_write(fhp->fh_export->ex_path.mnt);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001494 /*
1495 * Update the filehandle to get the new inode info.
1496 */
1497 if (!err)
1498 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 out:
1501 fh_unlock(fhp);
1502 if (dchild && !IS_ERR(dchild))
1503 dput(dchild);
1504 return err;
1505
1506 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001507 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 goto out;
1509}
1510#endif /* CONFIG_NFSD_V3 */
1511
1512/*
1513 * Read a symlink. On entry, *lenp must contain the maximum path length that
1514 * fits into the buffer. On return, it contains the true length.
1515 * N.B. After this call fhp needs an fh_put
1516 */
Al Viro6264d692006-10-19 23:28:58 -07001517__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1519{
1520 struct dentry *dentry;
1521 struct inode *inode;
1522 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001523 __be32 err;
1524 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001526 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (err)
1528 goto out;
1529
1530 dentry = fhp->fh_dentry;
1531 inode = dentry->d_inode;
1532
1533 err = nfserr_inval;
Al Viroacfa4382008-12-04 10:06:33 -05001534 if (!inode->i_op->readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 goto out;
1536
Jan Blunck54775492008-02-14 19:38:39 -08001537 touch_atime(fhp->fh_export->ex_path.mnt, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 /* N.B. Why does this call need a get_fs()??
1539 * Remove the set_fs and watch the fireworks:-) --okir
1540 */
1541
1542 oldfs = get_fs(); set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -07001543 host_err = inode->i_op->readlink(dentry, buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 set_fs(oldfs);
1545
Al Viro6264d692006-10-19 23:28:58 -07001546 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001548 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 err = 0;
1550out:
1551 return err;
1552
1553out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001554 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 goto out;
1556}
1557
1558/*
1559 * Create a symlink and look up its inode
1560 * N.B. After this call _both_ fhp and resfhp need an fh_put
1561 */
Al Viro6264d692006-10-19 23:28:58 -07001562__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1564 char *fname, int flen,
1565 char *path, int plen,
1566 struct svc_fh *resfhp,
1567 struct iattr *iap)
1568{
1569 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001570 __be32 err, cerr;
1571 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 err = nfserr_noent;
1574 if (!flen || !plen)
1575 goto out;
1576 err = nfserr_exist;
1577 if (isdotent(fname, flen))
1578 goto out;
1579
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001580 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (err)
1582 goto out;
1583 fh_lock(fhp);
1584 dentry = fhp->fh_dentry;
1585 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001586 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (IS_ERR(dnew))
1588 goto out_nfserr;
1589
Dave Hansen75c3f292008-02-15 14:37:45 -08001590 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1591 if (host_err)
1592 goto out_nfserr;
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (unlikely(path[plen] != 0)) {
1595 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1596 if (path_alloced == NULL)
Al Viro6264d692006-10-19 23:28:58 -07001597 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 else {
1599 strncpy(path_alloced, path, plen);
1600 path_alloced[plen] = 0;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001601 host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 kfree(path_alloced);
1603 }
1604 } else
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001605 host_err = vfs_symlink(dentry->d_inode, dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001606 err = nfserrno(host_err);
Ben Myersf5019122010-02-17 14:05:11 -06001607 if (!err)
1608 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 fh_unlock(fhp);
1610
Dave Hansen75c3f292008-02-15 14:37:45 -08001611 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1614 dput(dnew);
1615 if (err==0) err = cerr;
1616out:
1617 return err;
1618
1619out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001620 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 goto out;
1622}
1623
1624/*
1625 * Create a hardlink
1626 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1627 */
Al Viro6264d692006-10-19 23:28:58 -07001628__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1630 char *name, int len, struct svc_fh *tfhp)
1631{
1632 struct dentry *ddir, *dnew, *dold;
1633 struct inode *dirp, *dest;
Al Viro6264d692006-10-19 23:28:58 -07001634 __be32 err;
1635 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001637 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (err)
1639 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001640 err = fh_verify(rqstp, tfhp, -S_IFDIR, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (err)
1642 goto out;
1643
1644 err = nfserr_perm;
1645 if (!len)
1646 goto out;
1647 err = nfserr_exist;
1648 if (isdotent(name, len))
1649 goto out;
1650
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001651 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 ddir = ffhp->fh_dentry;
1653 dirp = ddir->d_inode;
1654
1655 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001656 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (IS_ERR(dnew))
1658 goto out_nfserr;
1659
1660 dold = tfhp->fh_dentry;
1661 dest = dold->d_inode;
1662
Dave Hansen75c3f292008-02-15 14:37:45 -08001663 host_err = mnt_want_write(tfhp->fh_export->ex_path.mnt);
1664 if (host_err) {
1665 err = nfserrno(host_err);
1666 goto out_dput;
1667 }
Al Viro6264d692006-10-19 23:28:58 -07001668 host_err = vfs_link(dold, dirp, dnew);
1669 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001670 err = nfserrno(commit_metadata(ffhp));
1671 if (!err)
1672 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 } else {
Al Viro6264d692006-10-19 23:28:58 -07001674 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 err = nfserr_acces;
1676 else
Al Viro6264d692006-10-19 23:28:58 -07001677 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001679 mnt_drop_write(tfhp->fh_export->ex_path.mnt);
1680out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001682out_unlock:
1683 fh_unlock(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684out:
1685 return err;
1686
1687out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001688 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001689 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
1691
1692/*
1693 * Rename a file
1694 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1695 */
Al Viro6264d692006-10-19 23:28:58 -07001696__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1698 struct svc_fh *tfhp, char *tname, int tlen)
1699{
1700 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1701 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001702 __be32 err;
1703 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001705 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (err)
1707 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001708 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 if (err)
1710 goto out;
1711
1712 fdentry = ffhp->fh_dentry;
1713 fdir = fdentry->d_inode;
1714
1715 tdentry = tfhp->fh_dentry;
1716 tdir = tdentry->d_inode;
1717
1718 err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
NeilBrowna56f3932006-06-30 01:56:10 -07001719 if (ffhp->fh_export != tfhp->fh_export)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 goto out;
1721
1722 err = nfserr_perm;
1723 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1724 goto out;
1725
1726 /* cannot use fh_lock as we need deadlock protective ordering
1727 * so do it by hand */
1728 trap = lock_rename(tdentry, fdentry);
1729 ffhp->fh_locked = tfhp->fh_locked = 1;
1730 fill_pre_wcc(ffhp);
1731 fill_pre_wcc(tfhp);
1732
1733 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001734 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (IS_ERR(odentry))
1736 goto out_nfserr;
1737
Al Viro6264d692006-10-19 23:28:58 -07001738 host_err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (!odentry->d_inode)
1740 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001741 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (odentry == trap)
1743 goto out_dput_old;
1744
1745 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001746 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (IS_ERR(ndentry))
1748 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001749 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (ndentry == trap)
1751 goto out_dput_new;
1752
Dave Hansen9079b1e2008-02-15 14:37:49 -08001753 if (svc_msnfs(ffhp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 ((atomic_read(&odentry->d_count) > 1)
1755 || (atomic_read(&ndentry->d_count) > 1))) {
Al Viro6264d692006-10-19 23:28:58 -07001756 host_err = -EPERM;
Dave Hansen9079b1e2008-02-15 14:37:49 -08001757 goto out_dput_new;
1758 }
1759
1760 host_err = -EXDEV;
1761 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1762 goto out_dput_new;
1763 host_err = mnt_want_write(ffhp->fh_export->ex_path.mnt);
1764 if (host_err)
1765 goto out_dput_new;
1766
Al Viro6264d692006-10-19 23:28:58 -07001767 host_err = vfs_rename(fdir, odentry, tdir, ndentry);
Ben Myersf5019122010-02-17 14:05:11 -06001768 if (!host_err) {
1769 host_err = commit_metadata(tfhp);
Al Viro6264d692006-10-19 23:28:58 -07001770 if (!host_err)
Ben Myersf5019122010-02-17 14:05:11 -06001771 host_err = commit_metadata(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 }
1773
Dave Hansen9079b1e2008-02-15 14:37:49 -08001774 mnt_drop_write(ffhp->fh_export->ex_path.mnt);
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 out_dput_new:
1777 dput(ndentry);
1778 out_dput_old:
1779 dput(odentry);
1780 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001781 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 /* we cannot reply on fh_unlock on the two filehandles,
1784 * as that would do the wrong thing if the two directories
1785 * were the same, so again we do it by hand
1786 */
1787 fill_post_wcc(ffhp);
1788 fill_post_wcc(tfhp);
1789 unlock_rename(tdentry, fdentry);
1790 ffhp->fh_locked = tfhp->fh_locked = 0;
1791
1792out:
1793 return err;
1794}
1795
1796/*
1797 * Unlink a file or directory
1798 * N.B. After this call fhp needs an fh_put
1799 */
Al Viro6264d692006-10-19 23:28:58 -07001800__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1802 char *fname, int flen)
1803{
1804 struct dentry *dentry, *rdentry;
1805 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001806 __be32 err;
1807 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 err = nfserr_acces;
1810 if (!flen || isdotent(fname, flen))
1811 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001812 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 if (err)
1814 goto out;
1815
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001816 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 dentry = fhp->fh_dentry;
1818 dirp = dentry->d_inode;
1819
1820 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001821 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (IS_ERR(rdentry))
1823 goto out_nfserr;
1824
1825 if (!rdentry->d_inode) {
1826 dput(rdentry);
1827 err = nfserr_noent;
1828 goto out;
1829 }
1830
1831 if (!type)
1832 type = rdentry->d_inode->i_mode & S_IFMT;
1833
Dave Hansen06227532008-02-15 14:37:34 -08001834 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1835 if (host_err)
1836 goto out_nfserr;
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 if (type != S_IFDIR) { /* It's UNLINK */
1839#ifdef MSNFS
1840 if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
1841 (atomic_read(&rdentry->d_count) > 1)) {
Al Viro6264d692006-10-19 23:28:58 -07001842 host_err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 } else
1844#endif
Al Viro6264d692006-10-19 23:28:58 -07001845 host_err = vfs_unlink(dirp, rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 } else { /* It's RMDIR */
Al Viro6264d692006-10-19 23:28:58 -07001847 host_err = vfs_rmdir(dirp, rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849
1850 dput(rdentry);
1851
Ben Myersf5019122010-02-17 14:05:11 -06001852 if (!host_err)
1853 host_err = commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Dave Hansen06227532008-02-15 14:37:34 -08001855 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001857 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001858out:
1859 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
1862/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001863 * We do this buffering because we must not call back into the file
1864 * system's ->lookup() method from the filldir callback. That may well
1865 * deadlock a number of file systems.
1866 *
1867 * This is based heavily on the implementation of same in XFS.
1868 */
1869struct buffered_dirent {
1870 u64 ino;
1871 loff_t offset;
1872 int namlen;
1873 unsigned int d_type;
1874 char name[];
1875};
1876
1877struct readdir_data {
1878 char *dirent;
1879 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001880 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001881};
1882
1883static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
1884 loff_t offset, u64 ino, unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001885{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001886 struct readdir_data *buf = __buf;
1887 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1888 unsigned int reclen;
1889
1890 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001891 if (buf->used + reclen > PAGE_SIZE) {
1892 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001893 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001894 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001895
1896 de->namlen = namlen;
1897 de->offset = offset;
1898 de->ino = ino;
1899 de->d_type = d_type;
1900 memcpy(de->name, name, namlen);
1901 buf->used += reclen;
1902
1903 return 0;
1904}
1905
David Woodhouse2f9092e2009-04-20 23:18:37 +01001906static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
1907 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001908{
1909 struct readdir_data buf;
1910 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001911 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001912 int size;
1913 loff_t offset;
David Woodhouse2628b762008-07-31 17:16:51 +01001914
David Woodhouse14f7dd62008-07-31 20:29:12 +01001915 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
1916 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001917 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001918
David Woodhouse14f7dd62008-07-31 20:29:12 +01001919 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001920
1921 while (1) {
David Woodhouse2f9092e2009-04-20 23:18:37 +01001922 struct inode *dir_inode = file->f_path.dentry->d_inode;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001923 unsigned int reclen;
1924
Doug Nazarb726e922008-11-05 06:16:28 -05001925 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001926 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001927 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001928
1929 host_err = vfs_readdir(file, nfsd_buffered_filldir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -04001930 if (buf.full)
1931 host_err = 0;
1932
1933 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001934 break;
1935
1936 size = buf.used;
1937
1938 if (!size)
1939 break;
1940
David Woodhouse2f9092e2009-04-20 23:18:37 +01001941 /*
1942 * Various filldir functions may end up calling back into
1943 * lookup_one_len() and the file system's ->lookup() method.
1944 * These expect i_mutex to be held, as it would within readdir.
1945 */
1946 host_err = mutex_lock_killable(&dir_inode->i_mutex);
1947 if (host_err)
1948 break;
1949
David Woodhouse14f7dd62008-07-31 20:29:12 +01001950 de = (struct buffered_dirent *)buf.dirent;
1951 while (size > 0) {
1952 offset = de->offset;
1953
1954 if (func(cdp, de->name, de->namlen, de->offset,
1955 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01001956 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001957
1958 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001959 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001960
1961 reclen = ALIGN(sizeof(*de) + de->namlen,
1962 sizeof(u64));
1963 size -= reclen;
1964 de = (struct buffered_dirent *)((char *)de + reclen);
1965 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01001966 mutex_unlock(&dir_inode->i_mutex);
1967 if (size > 0) /* We bailed out early */
1968 break;
1969
David Woodhousec002a6c2008-08-17 17:21:18 +01001970 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001971 }
1972
David Woodhouse14f7dd62008-07-31 20:29:12 +01001973 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01001974
1975 if (host_err)
1976 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001977
1978 *offsetp = offset;
1979 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01001980}
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982/*
1983 * Read entries from a directory.
1984 * The NFSv3/4 verifier we ignore for now.
1985 */
Al Viro6264d692006-10-19 23:28:58 -07001986__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
NeilBrowna0ad13e2007-01-26 00:57:10 -08001988 struct readdir_cd *cdp, filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
Al Viro6264d692006-10-19 23:28:58 -07001990 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 struct file *file;
1992 loff_t offset = *offsetp;
1993
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001994 err = nfsd_open(rqstp, fhp, S_IFDIR, NFSD_MAY_READ, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 if (err)
1996 goto out;
1997
1998 offset = vfs_llseek(file, offset, 0);
1999 if (offset < 0) {
2000 err = nfserrno((int)offset);
2001 goto out_close;
2002 }
2003
David Woodhouse14f7dd62008-07-31 20:29:12 +01002004 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006 if (err == nfserr_eof || err == nfserr_toosmall)
2007 err = nfs_ok; /* can still be found in ->err */
2008out_close:
2009 nfsd_close(file);
2010out:
2011 return err;
2012}
2013
2014/*
2015 * Get file system stats
2016 * N.B. After this call fhp needs an fh_put
2017 */
Al Viro6264d692006-10-19 23:28:58 -07002018__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04002019nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
J. Bruce Fields04716e62008-08-07 13:00:20 -04002021 __be32 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
David Howells726c3342006-06-23 02:02:58 -07002022 if (!err && vfs_statfs(fhp->fh_dentry,stat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 err = nfserr_io;
2024 return err;
2025}
2026
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002027static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002028{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002029 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002030}
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032/*
2033 * Check for a user's access permissions to this inode.
2034 */
Al Viro6264d692006-10-19 23:28:58 -07002035__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07002036nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2037 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
2039 struct inode *inode = dentry->d_inode;
Mimi Zohar14dba532009-05-27 09:31:52 -04002040 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 int err;
2042
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002043 if (acc == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return 0;
2045#if 0
2046 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2047 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002048 (acc & NFSD_MAY_READ)? " read" : "",
2049 (acc & NFSD_MAY_WRITE)? " write" : "",
2050 (acc & NFSD_MAY_EXEC)? " exec" : "",
2051 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2052 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2053 (acc & NFSD_MAY_LOCK)? " lock" : "",
2054 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 inode->i_mode,
2056 IS_IMMUTABLE(inode)? " immut" : "",
2057 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08002058 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11002060 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061#endif
2062
2063 /* Normally we reject any write/sattr etc access on a read-only file
2064 * system. But if it is IRIX doing check on write-access for a
2065 * device special file, we ignore rofs.
2066 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002067 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2068 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08002069 if (exp_rdonly(rqstp, exp) ||
2070 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002072 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return nfserr_perm;
2074 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002075 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return nfserr_perm;
2077
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002078 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 /* If we cannot rely on authentication in NLM requests,
2080 * just allow locks, otherwise require read permission, or
2081 * ownership
2082 */
2083 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2084 return 0;
2085 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002086 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
2088 /*
2089 * The file owner always gets access permission for accesses that
2090 * would normally be checked at open time. This is to make
2091 * file access work even when the client has done a fchmod(fd, 0).
2092 *
2093 * However, `cp foo bar' should fail nevertheless when bar is
2094 * readonly. A sensible way to do this might be to reject all
2095 * attempts to truncate a read-only file, because a creat() call
2096 * always implies file truncation.
2097 * ... but this isn't really fair. A process may reasonably call
2098 * ftruncate on an open file descriptor on a file with perm 000.
2099 * We must trust the client to do permission checking - using "ACCESS"
2100 * with NFSv3.
2101 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002102 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
David Howells5cc0a842008-11-14 10:38:58 +11002103 inode->i_uid == current_fsuid())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 return 0;
2105
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002106 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04002107 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 /* Allow read access to binaries even when mode 111 */
2110 if (err == -EACCES && S_ISREG(inode->i_mode) &&
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002111 acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE))
Al Virof419a2e2008-07-22 00:07:17 -04002112 err = inode_permission(inode, MAY_EXEC);
Mimi Zohar14dba532009-05-27 09:31:52 -04002113 if (err)
2114 goto nfsd_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Mimi Zohar14dba532009-05-27 09:31:52 -04002116 /* Do integrity (permission) checking now, but defer incrementing
2117 * IMA counts to the actual file open.
2118 */
2119 path.mnt = exp->ex_path.mnt;
2120 path.dentry = dentry;
Mimi Zohar14dba532009-05-27 09:31:52 -04002121nfsd_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 return err? nfserrno(err) : 0;
2123}
2124
2125void
2126nfsd_racache_shutdown(void)
2127{
Jeff Layton54a66e52008-08-13 22:03:27 -04002128 struct raparms *raparm, *last_raparm;
2129 unsigned int i;
2130
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04002132
2133 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2134 raparm = raparm_hash[i].pb_head;
2135 while(raparm) {
2136 last_raparm = raparm;
2137 raparm = raparm->p_next;
2138 kfree(last_raparm);
2139 }
2140 raparm_hash[i].pb_head = NULL;
2141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142}
2143/*
2144 * Initialize readahead param cache
2145 */
2146int
2147nfsd_racache_init(int cache_size)
2148{
2149 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002150 int j = 0;
2151 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002152 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Greg Banksfce14562006-10-04 02:15:49 -07002154
Jeff Layton54a66e52008-08-13 22:03:27 -04002155 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002157 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
2158 if (nperbucket < 2)
2159 nperbucket = 2;
2160 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002161
2162 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002163
2164 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002165 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002166
2167 raparm = &raparm_hash[i].pb_head;
2168 for (j = 0; j < nperbucket; j++) {
2169 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2170 if (!*raparm)
2171 goto out_nomem;
2172 raparm = &(*raparm)->p_next;
2173 }
2174 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002175 }
2176
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 nfsdstats.ra_size = cache_size;
2178 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002179
2180out_nomem:
2181 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2182 nfsd_racache_shutdown();
2183 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002185
2186#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
2187struct posix_acl *
2188nfsd_get_posix_acl(struct svc_fh *fhp, int type)
2189{
2190 struct inode *inode = fhp->fh_dentry->d_inode;
2191 char *name;
2192 void *value = NULL;
2193 ssize_t size;
2194 struct posix_acl *acl;
2195
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002196 if (!IS_POSIXACL(inode))
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002197 return ERR_PTR(-EOPNOTSUPP);
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002198
2199 switch (type) {
2200 case ACL_TYPE_ACCESS:
2201 name = POSIX_ACL_XATTR_ACCESS;
2202 break;
2203 case ACL_TYPE_DEFAULT:
2204 name = POSIX_ACL_XATTR_DEFAULT;
2205 break;
2206 default:
2207 return ERR_PTR(-EOPNOTSUPP);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002208 }
2209
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002210 size = nfsd_getxattr(fhp->fh_dentry, name, &value);
2211 if (size < 0)
2212 return ERR_PTR(size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002213
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002214 acl = posix_acl_from_xattr(value, size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002215 kfree(value);
2216 return acl;
2217}
2218
2219int
2220nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
2221{
2222 struct inode *inode = fhp->fh_dentry->d_inode;
2223 char *name;
2224 void *value = NULL;
2225 size_t size;
2226 int error;
2227
Al Viroacfa4382008-12-04 10:06:33 -05002228 if (!IS_POSIXACL(inode) ||
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002229 !inode->i_op->setxattr || !inode->i_op->removexattr)
2230 return -EOPNOTSUPP;
2231 switch(type) {
2232 case ACL_TYPE_ACCESS:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002233 name = POSIX_ACL_XATTR_ACCESS;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002234 break;
2235 case ACL_TYPE_DEFAULT:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002236 name = POSIX_ACL_XATTR_DEFAULT;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002237 break;
2238 default:
2239 return -EOPNOTSUPP;
2240 }
2241
2242 if (acl && acl->a_count) {
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002243 size = posix_acl_xattr_size(acl->a_count);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002244 value = kmalloc(size, GFP_KERNEL);
2245 if (!value)
2246 return -ENOMEM;
Florin Malita9ccfc292006-05-20 14:59:58 -07002247 error = posix_acl_to_xattr(acl, value, size);
2248 if (error < 0)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002249 goto getout;
Florin Malita9ccfc292006-05-20 14:59:58 -07002250 size = error;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002251 } else
2252 size = 0;
2253
Dave Hansen18f335a2008-02-15 14:37:38 -08002254 error = mnt_want_write(fhp->fh_export->ex_path.mnt);
2255 if (error)
2256 goto getout;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002257 if (size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002258 error = vfs_setxattr(fhp->fh_dentry, name, value, size, 0);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002259 else {
2260 if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
2261 error = 0;
2262 else {
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002263 error = vfs_removexattr(fhp->fh_dentry, name);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002264 if (error == -ENODATA)
2265 error = 0;
2266 }
2267 }
Dave Hansen18f335a2008-02-15 14:37:38 -08002268 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002269
2270getout:
2271 kfree(value);
2272 return error;
2273}
2274#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */