blob: ff93025ae2f7ccdfe2740933c96e293a10b8ab31 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * File operations used by nfsd. Some of these have been ripped from
3 * other parts of the kernel because they weren't exported, others
4 * are partial duplicates with added or changed functionality.
5 *
6 * Note that several functions dget() the dentry upon which they want
7 * to act, most notably those that create directory entries. Response
8 * dentry's are dput()'d if necessary in the release callback.
9 * So if you notice code paths that apparently fail to dput() the
10 * dentry, don't worry--they have been taken care of.
11 *
12 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
13 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/fs.h>
17#include <linux/file.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020018#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/delay.h>
Robert Love0eeca282005-07-12 17:06:03 -040022#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/xattr.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020025#include <linux/jhash.h>
26#include <linux/ima.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020028#include <asm/uaccess.h>
Ben Myersf5019122010-02-17 14:05:11 -060029#include <linux/exportfs.h>
30#include <linux/writeback.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020031
32#ifdef CONFIG_NFSD_V3
33#include "xdr3.h"
34#endif /* CONFIG_NFSD_V3 */
35
Christoph Hellwig5be196e2006-01-09 20:51:55 -080036#ifdef CONFIG_NFSD_V4
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050037#include "acl.h"
38#include "idmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#endif /* CONFIG_NFSD_V4 */
40
Boaz Harrosh9a74af22009-12-03 20:30:56 +020041#include "nfsd.h"
42#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define NFSDDBG_FACILITY NFSDDBG_FILEOP
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * This is a cache of readahead params that help us choose the proper
49 * readahead strategy. Initially, we set all readahead parameters to 0
50 * and let the VFS handle things.
51 * If you increase the number of cached files very much, you'll need to
52 * add a hash table here.
53 */
54struct raparms {
55 struct raparms *p_next;
56 unsigned int p_count;
57 ino_t p_ino;
58 dev_t p_dev;
59 int p_set;
60 struct file_ra_state p_ra;
Greg Banksfce14562006-10-04 02:15:49 -070061 unsigned int p_hindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Greg Banksfce14562006-10-04 02:15:49 -070064struct raparm_hbucket {
65 struct raparms *pb_head;
66 spinlock_t pb_lock;
67} ____cacheline_aligned_in_smp;
68
Greg Banksfce14562006-10-04 02:15:49 -070069#define RAPARM_HASH_BITS 4
70#define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
71#define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
72static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
75 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
76 * a mount point.
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -080077 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * or nfs_ok having possibly changed *dpp and *expp
79 */
80int
81nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
82 struct svc_export **expp)
83{
84 struct svc_export *exp = *expp, *exp2 = NULL;
85 struct dentry *dentry = *dpp;
Al Viro91c9fa82009-04-18 02:42:05 -040086 struct path path = {.mnt = mntget(exp->ex_path.mnt),
87 .dentry = dget(dentry)};
Al Viro6264d692006-10-19 23:28:58 -070088 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Al Viro7cc90cc2011-03-18 09:04:20 -040090 err = follow_down(&path);
David Howellscc53ce52011-01-14 18:45:26 +000091 if (err < 0)
92 goto out;
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
J. Bruce Fields4795bb32011-01-11 13:55:46 -0500276static int nfsd_break_lease(struct inode *inode)
277{
278 if (!S_ISREG(inode->i_mode))
279 return 0;
280 return break_lease(inode, O_WRONLY | O_NONBLOCK);
281}
282
Ben Myersf5019122010-02-17 14:05:11 -0600283/*
284 * Commit metadata changes to stable storage.
285 */
286static int
287commit_metadata(struct svc_fh *fhp)
288{
289 struct inode *inode = fhp->fh_dentry->d_inode;
290 const struct export_operations *export_ops = inode->i_sb->s_export_op;
Ben Myersf5019122010-02-17 14:05:11 -0600291
292 if (!EX_ISSYNC(fhp->fh_export))
293 return 0;
294
Christoph Hellwigc37650162010-10-06 10:48:20 +0200295 if (export_ops->commit_metadata)
296 return export_ops->commit_metadata(inode);
297 return sync_inode_metadata(inode, 1);
Ben Myersf5019122010-02-17 14:05:11 -0600298}
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/*
301 * Set various file attributes.
302 * N.B. After this call fhp needs an fh_put
303 */
Al Viro6264d692006-10-19 23:28:58 -0700304__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
306 int check_guard, time_t guardtime)
307{
308 struct dentry *dentry;
309 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200310 int accmode = NFSD_MAY_SATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 int ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700312 __be32 err;
313 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 int size_change = 0;
315
316 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200317 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (iap->ia_valid & ATTR_SIZE)
319 ftype = S_IFREG;
320
321 /* Get inode */
322 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800323 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 goto out;
325
326 dentry = fhp->fh_dentry;
327 inode = dentry->d_inode;
328
NeilBrown15b7a1b2005-11-07 01:00:23 -0800329 /* Ignore any mode updates on symlinks */
330 if (S_ISLNK(inode->i_mode))
331 iap->ia_valid &= ~ATTR_MODE;
332
333 if (!iap->ia_valid)
334 goto out;
335
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000336 /*
337 * NFSv2 does not differentiate between "set-[ac]time-to-now"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * which only requires access, and "set-[ac]time-to-X" which
339 * requires ownership.
340 * So if it looks like it might be "set both to the same time which
341 * is close to now", and if inode_change_ok fails, then we
342 * convert to "set to now" instead of "set to explicit time"
343 *
344 * We only call inode_change_ok as the last test as technically
345 * it is not an interface that we should be using. It is only
346 * valid if the filesystem does not define it's own i_op->setattr.
347 */
348#define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
349#define MAX_TOUCH_TIME_ERROR (30*60)
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000350 if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
351 iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
352 /*
353 * Looks probable.
354 *
355 * Now just make sure time is in the right ballpark.
356 * Solaris, at least, doesn't seem to care what the time
357 * request is. We require it be within 30 minutes of now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 */
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000359 time_t delta = iap->ia_atime.tv_sec - get_seconds();
360 if (delta < 0)
361 delta = -delta;
362 if (delta < MAX_TOUCH_TIME_ERROR &&
363 inode_change_ok(inode, iap) != 0) {
364 /*
365 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
366 * This will cause notify_change to set these times
367 * to "now"
368 */
369 iap->ia_valid &= ~BOTH_TIME_SET;
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000373 /*
374 * The size case is special.
375 * It changes the file as well as the attributes.
376 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (iap->ia_valid & ATTR_SIZE) {
378 if (iap->ia_size < inode->i_size) {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200379 err = nfsd_permission(rqstp, fhp->fh_export, dentry,
380 NFSD_MAY_TRUNC|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (err)
382 goto out;
383 }
384
Al Viro6264d692006-10-19 23:28:58 -0700385 host_err = get_write_access(inode);
386 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 goto out_nfserr;
388
389 size_change = 1;
Al Viro6264d692006-10-19 23:28:58 -0700390 host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
391 if (host_err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 put_write_access(inode);
393 goto out_nfserr;
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396
Jeff Laytonca456252008-04-16 16:28:47 -0400397 /* sanitize the mode change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (iap->ia_valid & ATTR_MODE) {
399 iap->ia_mode &= S_IALLUGO;
Jeff Laytondee32092008-04-16 16:28:46 -0400400 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
Jeff Laytonca456252008-04-16 16:28:47 -0400401 }
402
403 /* Revoke setuid/setgid on chown */
Sachin S. Prabhu0953e622009-02-23 16:22:03 +0000404 if (!S_ISDIR(inode->i_mode) &&
405 (((iap->ia_valid & ATTR_UID) && iap->ia_uid != inode->i_uid) ||
406 ((iap->ia_valid & ATTR_GID) && iap->ia_gid != inode->i_gid))) {
Jeff Laytonca456252008-04-16 16:28:47 -0400407 iap->ia_valid |= ATTR_KILL_PRIV;
408 if (iap->ia_valid & ATTR_MODE) {
409 /* we're setting mode too, just clear the s*id bits */
Jeff Layton8a0ce7d2007-10-18 03:05:19 -0700410 iap->ia_mode &= ~S_ISUID;
Jeff Laytonca456252008-04-16 16:28:47 -0400411 if (iap->ia_mode & S_IXGRP)
412 iap->ia_mode &= ~S_ISGID;
413 } else {
414 /* set ATTR_KILL_* bits and let VFS handle it */
415 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
Jeff Layton8a0ce7d2007-10-18 03:05:19 -0700416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /* Change the attributes. */
420
421 iap->ia_valid |= ATTR_CTIME;
422
423 err = nfserr_notsync;
424 if (!check_guard || guardtime == inode->i_ctime.tv_sec) {
J. Bruce Fields4795bb32011-01-11 13:55:46 -0500425 host_err = nfsd_break_lease(inode);
J. Bruce Fields6a76beb2011-01-11 12:54:39 -0500426 if (host_err)
427 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 fh_lock(fhp);
J. Bruce Fields6a76beb2011-01-11 12:54:39 -0500429
Al Viro6264d692006-10-19 23:28:58 -0700430 host_err = notify_change(dentry, iap);
431 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 fh_unlock(fhp);
433 }
434 if (size_change)
435 put_write_access(inode);
436 if (!err)
Christoph Hellwigb160fda2010-06-01 21:59:18 +0200437 commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438out:
439 return err;
440
441out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700442 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 goto out;
444}
445
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800446#if defined(CONFIG_NFSD_V2_ACL) || \
447 defined(CONFIG_NFSD_V3_ACL) || \
448 defined(CONFIG_NFSD_V4)
449static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
450{
451 ssize_t buflen;
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530452 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800454 buflen = vfs_getxattr(dentry, key, NULL, 0);
455 if (buflen <= 0)
456 return buflen;
457
458 *buf = kmalloc(buflen, GFP_KERNEL);
459 if (!*buf)
460 return -ENOMEM;
461
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530462 ret = vfs_getxattr(dentry, key, *buf, buflen);
463 if (ret < 0)
464 kfree(*buf);
465 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800466}
467#endif
468
469#if defined(CONFIG_NFSD_V4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470static int
471set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
472{
473 int len;
474 size_t buflen;
475 char *buf = NULL;
476 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 buflen = posix_acl_xattr_size(pacl->a_count);
479 buf = kmalloc(buflen, GFP_KERNEL);
480 error = -ENOMEM;
481 if (buf == NULL)
482 goto out;
483
484 len = posix_acl_to_xattr(pacl, buf, buflen);
485 if (len < 0) {
486 error = len;
487 goto out;
488 }
489
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800490 error = vfs_setxattr(dentry, key, buf, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491out:
492 kfree(buf);
493 return error;
494}
495
Al Viro6264d692006-10-19 23:28:58 -0700496__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
498 struct nfs4_acl *acl)
499{
Al Viro6264d692006-10-19 23:28:58 -0700500 __be32 error;
501 int host_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 struct dentry *dentry;
503 struct inode *inode;
504 struct posix_acl *pacl = NULL, *dpacl = NULL;
505 unsigned int flags = 0;
506
507 /* Get inode */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200508 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (error)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700510 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 dentry = fhp->fh_dentry;
513 inode = dentry->d_inode;
514 if (S_ISDIR(inode->i_mode))
515 flags = NFS4_ACL_DIR;
516
Al Viro6264d692006-10-19 23:28:58 -0700517 host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
518 if (host_error == -EINVAL) {
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700519 return nfserr_attrnotsupp;
Al Viro6264d692006-10-19 23:28:58 -0700520 } else if (host_error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 goto out_nfserr;
522
Al Viro6264d692006-10-19 23:28:58 -0700523 host_error = set_nfsv4_acl_one(dentry, pacl, POSIX_ACL_XATTR_ACCESS);
524 if (host_error < 0)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700525 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700527 if (S_ISDIR(inode->i_mode))
Al Viro6264d692006-10-19 23:28:58 -0700528 host_error = set_nfsv4_acl_one(dentry, dpacl, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700530out_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 posix_acl_release(pacl);
532 posix_acl_release(dpacl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533out_nfserr:
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800534 if (host_error == -EOPNOTSUPP)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700535 return nfserr_attrnotsupp;
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800536 else
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700537 return nfserrno(host_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540static struct posix_acl *
541_get_posix_acl(struct dentry *dentry, char *key)
542{
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800543 void *buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 struct posix_acl *pacl = NULL;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800545 int buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800547 buflen = nfsd_getxattr(dentry, key, &buf);
548 if (!buflen)
549 buflen = -ENODATA;
550 if (buflen <= 0)
551 return ERR_PTR(buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 pacl = posix_acl_from_xattr(buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 kfree(buf);
555 return pacl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558int
559nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
560{
561 struct inode *inode = dentry->d_inode;
562 int error = 0;
563 struct posix_acl *pacl = NULL, *dpacl = NULL;
564 unsigned int flags = 0;
565
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700566 pacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_ACCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
568 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
569 if (IS_ERR(pacl)) {
570 error = PTR_ERR(pacl);
571 pacl = NULL;
572 goto out;
573 }
574
575 if (S_ISDIR(inode->i_mode)) {
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700576 dpacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
578 dpacl = NULL;
579 else if (IS_ERR(dpacl)) {
580 error = PTR_ERR(dpacl);
581 dpacl = NULL;
582 goto out;
583 }
584 flags = NFS4_ACL_DIR;
585 }
586
587 *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
588 if (IS_ERR(*acl)) {
589 error = PTR_ERR(*acl);
590 *acl = NULL;
591 }
592 out:
593 posix_acl_release(pacl);
594 posix_acl_release(dpacl);
595 return error;
596}
597
J. Bruce Fields6a85d6c2010-07-06 12:39:12 -0400598#endif /* defined(CONFIG_NFSD_V4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600#ifdef CONFIG_NFSD_V3
601/*
602 * Check server access rights to a file system object
603 */
604struct accessmap {
605 u32 access;
606 int how;
607};
608static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200609 { NFS3_ACCESS_READ, NFSD_MAY_READ },
610 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
611 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
612 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 { 0, 0 }
615};
616
617static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200618 { NFS3_ACCESS_READ, NFSD_MAY_READ },
619 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
620 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
621 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
622 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 { 0, 0 }
625};
626
627static struct accessmap nfs3_anyaccess[] = {
628 /* Some clients - Solaris 2.6 at least, make an access call
629 * to the server to check for access for things like /dev/null
630 * (which really, the server doesn't care about). So
631 * We provide simple access checking for them, looking
632 * mainly at mode bits, and we make sure to ignore read-only
633 * filesystem checks
634 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200635 { NFS3_ACCESS_READ, NFSD_MAY_READ },
636 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
637 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
638 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 { 0, 0 }
641};
642
Al Viro6264d692006-10-19 23:28:58 -0700643__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
645{
646 struct accessmap *map;
647 struct svc_export *export;
648 struct dentry *dentry;
649 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700650 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200652 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (error)
654 goto out;
655
656 export = fhp->fh_export;
657 dentry = fhp->fh_dentry;
658
659 if (S_ISREG(dentry->d_inode->i_mode))
660 map = nfs3_regaccess;
661 else if (S_ISDIR(dentry->d_inode->i_mode))
662 map = nfs3_diraccess;
663 else
664 map = nfs3_anyaccess;
665
666
667 query = *access;
668 for (; map->access; map++) {
669 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700670 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 sresult |= map->access;
673
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700674 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 switch (err2) {
676 case nfs_ok:
677 result |= map->access;
678 break;
679
680 /* the following error codes just mean the access was not allowed,
681 * rather than an error occurred */
682 case nfserr_rofs:
683 case nfserr_acces:
684 case nfserr_perm:
685 /* simply don't "or" in the access bit. */
686 break;
687 default:
688 error = err2;
689 goto out;
690 }
691 }
692 }
693 *access = result;
694 if (supported)
695 *supported = sresult;
696
697 out:
698 return error;
699}
700#endif /* CONFIG_NFSD_V3 */
701
702
703
704/*
705 * Open an existing file or directory.
706 * The access argument indicates the type of open (read/write/lock)
707 * N.B. After this call fhp needs an fh_put
708 */
Al Viro6264d692006-10-19 23:28:58 -0700709__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
711 int access, struct file **filp)
712{
713 struct dentry *dentry;
714 struct inode *inode;
Al Viro6264d692006-10-19 23:28:58 -0700715 int flags = O_RDONLY|O_LARGEFILE;
716 __be32 err;
Jeff Layton91885252010-03-19 08:06:28 -0400717 int host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
David Howellse0e81732009-09-02 09:13:40 +0100719 validate_process_creds();
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /*
722 * If we get here, then the client has already done an "open",
723 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
724 * in case a chmod has now revoked permission.
725 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200726 err = fh_verify(rqstp, fhp, type, access | NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (err)
728 goto out;
729
730 dentry = fhp->fh_dentry;
731 inode = dentry->d_inode;
732
733 /* Disallow write access to files with the append-only bit set
734 * or any access when mandatory locking enabled
735 */
736 err = nfserr_perm;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200737 if (IS_APPEND(inode) && (access & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400739 /*
740 * We must ignore files (but only files) which might have mandatory
741 * locks on them because there is no way to know if the accesser has
742 * the lock.
743 */
744 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 goto out;
746
747 if (!inode->i_fop)
748 goto out;
749
750 /*
751 * Check to see if there are any leases on this file.
752 * This may block while leases are broken.
753 */
Jeff Layton91885252010-03-19 08:06:28 -0400754 if (!(access & NFSD_MAY_NOT_BREAK_LEASE))
755 host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0));
Al Viro6264d692006-10-19 23:28:58 -0700756 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 goto out_nfserr;
758
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200759 if (access & NFSD_MAY_WRITE) {
760 if (access & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700761 flags = O_RDWR|O_LARGEFILE;
762 else
763 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
Jan Blunck54775492008-02-14 19:38:39 -0800765 *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt),
David Howells033a6662009-07-02 14:35:32 +0100766 flags, current_cred());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (IS_ERR(*filp))
Al Viro6264d692006-10-19 23:28:58 -0700768 host_err = PTR_ERR(*filp);
Chuck Ebbertaeaa5cc2010-02-15 18:07:39 -0500769 else
770 host_err = ima_file_check(*filp, access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700772 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773out:
David Howellse0e81732009-09-02 09:13:40 +0100774 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return err;
776}
777
778/*
779 * Close a file.
780 */
781void
782nfsd_close(struct file *filp)
783{
784 fput(filp);
785}
786
J. Bruce Fields9a8d2482009-01-06 13:37:03 -0500787/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 * Obtain the readahead parameters for the file
789 * specified by (dev, ino).
790 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792static inline struct raparms *
793nfsd_get_raparms(dev_t dev, ino_t ino)
794{
795 struct raparms *ra, **rap, **frap = NULL;
796 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700797 unsigned int hash;
798 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Greg Banksfce14562006-10-04 02:15:49 -0700800 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
801 rab = &raparm_hash[hash];
802
803 spin_lock(&rab->pb_lock);
804 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (ra->p_ino == ino && ra->p_dev == dev)
806 goto found;
807 depth++;
808 if (ra->p_count == 0)
809 frap = rap;
810 }
Konstantin Khorenko3aa6e0a2011-02-01 17:16:29 +0300811 depth = nfsdstats.ra_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700813 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return NULL;
815 }
816 rap = frap;
817 ra = *frap;
818 ra->p_dev = dev;
819 ra->p_ino = ino;
820 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700821 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822found:
Greg Banksfce14562006-10-04 02:15:49 -0700823 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700825 ra->p_next = rab->pb_head;
826 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828 ra->p_count++;
829 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700830 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return ra;
832}
833
834/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200835 * Grab and keep cached pages associated with a file in the svc_rqst
836 * so that they can be passed to the network sendmsg/sendpage routines
837 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 */
839static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200840nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
841 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Jens Axboecf8208d2007-06-12 21:22:14 +0200843 struct svc_rqst *rqstp = sd->u.data;
NeilBrown44524352006-10-04 02:15:46 -0700844 struct page **pp = rqstp->rq_respages + rqstp->rq_resused;
Jens Axboecf8208d2007-06-12 21:22:14 +0200845 struct page *page = buf->page;
846 size_t size;
Jens Axboecf8208d2007-06-12 21:22:14 +0200847
848 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 if (rqstp->rq_res.page_len == 0) {
851 get_page(page);
NeilBrown44524352006-10-04 02:15:46 -0700852 put_page(*pp);
853 *pp = page;
854 rqstp->rq_resused++;
Jens Axboecf8208d2007-06-12 21:22:14 +0200855 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700857 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 get_page(page);
NeilBrown250f3912007-01-26 00:56:59 -0800859 if (*pp)
860 put_page(*pp);
NeilBrown44524352006-10-04 02:15:46 -0700861 *pp = page;
862 rqstp->rq_resused++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700864 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return size;
868}
869
Jens Axboecf8208d2007-06-12 21:22:14 +0200870static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
871 struct splice_desc *sd)
872{
873 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
874}
875
Al Viro6264d692006-10-19 23:28:58 -0700876static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
878 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
879{
880 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700882 __be32 err;
883 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 err = nfserr_perm;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800886 inode = file->f_path.dentry->d_inode;
Dave Hansena8754be2007-10-16 23:31:15 -0700887
Jens Axboecf8208d2007-06-12 21:22:14 +0200888 if (file->f_op->splice_read && rqstp->rq_splice_ok) {
889 struct splice_desc sd = {
890 .len = 0,
891 .total_len = *count,
892 .pos = offset,
893 .u.data = rqstp,
894 };
895
Jens Axboe4fbef202007-07-13 22:42:20 +0200896 rqstp->rq_resused = 1;
Jens Axboecf8208d2007-06-12 21:22:14 +0200897 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 } else {
899 oldfs = get_fs();
900 set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -0700901 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 set_fs(oldfs);
903 }
904
Al Viro6264d692006-10-19 23:28:58 -0700905 if (host_err >= 0) {
906 nfsdstats.io_read += host_err;
907 *count = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 err = 0;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500909 fsnotify_access(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 } else
Al Viro6264d692006-10-19 23:28:58 -0700911 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return err;
913}
914
Neil Brown9f708e42006-01-06 00:19:59 -0800915static void kill_suid(struct dentry *dentry)
916{
917 struct iattr ia;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700918 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
Neil Brown9f708e42006-01-06 00:19:59 -0800919
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800920 mutex_lock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -0800921 notify_change(dentry, &ia);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800922 mutex_unlock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -0800923}
924
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700925/*
926 * Gathered writes: If another process is currently writing to the file,
927 * there's a high chance this is another nfsd (triggered by a bulk write
928 * from a client's biod). Rather than syncing the file with each write
929 * request, we sleep for 10 msec.
930 *
931 * I don't know if this roughly approximates C. Juszak's idea of
932 * gathered writes, but it's a nice and simple solution (IMHO), and it
933 * seems to work:-)
934 *
935 * Note: we do this only in the NFSv2 case, since v3 and higher have a
936 * better tool (separate unstable writes and commits) for solving this
937 * problem.
938 */
939static int wait_for_concurrent_writes(struct file *file)
940{
941 struct inode *inode = file->f_path.dentry->d_inode;
942 static ino_t last_ino;
943 static dev_t last_dev;
944 int err = 0;
945
946 if (atomic_read(&inode->i_writecount) > 1
947 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
948 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
949 msleep(10);
950 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
951 }
952
953 if (inode->i_state & I_DIRTY) {
954 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100955 err = vfs_fsync(file, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700956 }
957 last_ino = inode->i_ino;
958 last_dev = inode->i_sb->s_dev;
959 return err;
960}
961
Al Viro6264d692006-10-19 23:28:58 -0700962static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
964 loff_t offset, struct kvec *vec, int vlen,
David Shaw31dec252009-03-05 20:16:14 -0500965 unsigned long *cnt, int *stablep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 struct svc_export *exp;
968 struct dentry *dentry;
969 struct inode *inode;
970 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700971 __be32 err = 0;
972 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 int stable = *stablep;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400974 int use_wgather;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800976 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 inode = dentry->d_inode;
978 exp = fhp->fh_export;
979
980 /*
981 * Request sync writes if
982 * - the sync export option has been set, or
983 * - the client requested O_SYNC behavior (NFSv3 feature).
984 * - The file system doesn't support fsync().
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400985 * When NFSv2 gathered writes have been configured for this volume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 * flushing the data to disk is handled separately below.
987 */
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400988 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Harvey Harrison3ba15142008-02-20 12:49:02 -0800990 if (!file->f_op->fsync) {/* COMMIT3 cannot work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 stable = 2;
992 *stablep = 2; /* FILE_SYNC */
993 }
994
995 if (!EX_ISSYNC(exp))
996 stable = 0;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400997 if (stable && !use_wgather) {
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -0700998 spin_lock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 file->f_flags |= O_SYNC;
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07001000 spin_unlock(&file->f_lock);
1001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 /* Write the data. */
1004 oldfs = get_fs(); set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -07001005 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001007 if (host_err < 0)
1008 goto out_nfserr;
1009 *cnt = host_err;
1010 nfsdstats.io_write += host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -05001011 fsnotify_modify(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 /* clear setuid/setgid flag after write */
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001014 if (inode->i_mode & (S_ISUID | S_ISGID))
Neil Brown9f708e42006-01-06 00:19:59 -08001015 kill_suid(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001017 if (stable && use_wgather)
J. Bruce Fieldsd911df72009-06-15 16:03:53 -07001018 host_err = wait_for_concurrent_writes(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001020out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001021 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001022 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001024 else
Al Viro6264d692006-10-19 23:28:58 -07001025 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return err;
1027}
1028
1029/*
1030 * Read data from a file. count must contain the requested read count
1031 * on entry. On return, *count contains the number of bytes actually read.
1032 * N.B. After this call fhp needs an fh_put
1033 */
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001034__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001035 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
1036{
1037 struct file *file;
1038 struct inode *inode;
1039 struct raparms *ra;
1040 __be32 err;
1041
1042 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
1043 if (err)
1044 return err;
1045
1046 inode = file->f_path.dentry->d_inode;
1047
1048 /* Get readahead parameters */
1049 ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
1050
1051 if (ra && ra->p_set)
1052 file->f_ra = ra->p_ra;
1053
1054 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1055
1056 /* Write back readahead params */
1057 if (ra) {
1058 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
1059 spin_lock(&rab->pb_lock);
1060 ra->p_ra = file->f_ra;
1061 ra->p_set = 1;
1062 ra->p_count--;
1063 spin_unlock(&rab->pb_lock);
1064 }
1065
1066 nfsd_close(file);
1067 return err;
1068}
1069
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001070/* As above, but use the provided file descriptor. */
Al Viro6264d692006-10-19 23:28:58 -07001071__be32
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001072nfsd_read_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 loff_t offset, struct kvec *vec, int vlen,
1074 unsigned long *count)
1075{
Al Viro6264d692006-10-19 23:28:58 -07001076 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001079 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001080 NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (err)
1082 goto out;
1083 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001084 } else /* Note file may still be NULL in NFSv4 special stateid case: */
1085 err = nfsd_read(rqstp, fhp, offset, vec, vlen, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086out:
1087 return err;
1088}
1089
1090/*
1091 * Write data to a file.
1092 * The stable flag requests synchronous writes.
1093 * N.B. After this call fhp needs an fh_put
1094 */
Al Viro6264d692006-10-19 23:28:58 -07001095__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
David Shaw31dec252009-03-05 20:16:14 -05001097 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 int *stablep)
1099{
Al Viro6264d692006-10-19 23:28:58 -07001100 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001103 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001104 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (err)
1106 goto out;
1107 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1108 stablep);
1109 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001110 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (err)
1112 goto out;
1113
1114 if (cnt)
1115 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1116 cnt, stablep);
1117 nfsd_close(file);
1118 }
1119out:
1120 return err;
1121}
1122
1123#ifdef CONFIG_NFSD_V3
1124/*
1125 * Commit all pending writes to stable storage.
Trond Myklebustaa696a62010-01-29 16:44:25 -05001126 *
1127 * Note: we only guarantee that data that lies within the range specified
1128 * by the 'offset' and 'count' parameters will be synced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 *
1130 * Unfortunately we cannot lock the file to make sure we return full WCC
1131 * data to the client, as locking happens lower down in the filesystem.
1132 */
Al Viro6264d692006-10-19 23:28:58 -07001133__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1135 loff_t offset, unsigned long count)
1136{
1137 struct file *file;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001138 loff_t end = LLONG_MAX;
1139 __be32 err = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Trond Myklebustaa696a62010-01-29 16:44:25 -05001141 if (offset < 0)
1142 goto out;
1143 if (count != 0) {
1144 end = offset + (loff_t)count - 1;
1145 if (end < offset)
1146 goto out;
1147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Jeff Layton91885252010-03-19 08:06:28 -04001149 err = nfsd_open(rqstp, fhp, S_IFREG,
1150 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001151 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001152 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (EX_ISSYNC(fhp->fh_export)) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001154 int err2 = vfs_fsync_range(file, offset, end, 0);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001155
1156 if (err2 != -EINVAL)
1157 err = nfserrno(err2);
1158 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 err = nfserr_notsupp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161
1162 nfsd_close(file);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001163out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return err;
1165}
1166#endif /* CONFIG_NFSD_V3 */
1167
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001168static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001169nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1170 struct iattr *iap)
1171{
1172 /*
1173 * Mode has already been set earlier in create:
1174 */
1175 iap->ia_valid &= ~ATTR_MODE;
1176 /*
1177 * Setting uid/gid works only for root. Irix appears to
1178 * send along the gid on create when it tries to implement
1179 * setgid directories via NFS:
1180 */
David Howells5cc0a842008-11-14 10:38:58 +11001181 if (current_fsuid() != 0)
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001182 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1183 if (iap->ia_valid)
1184 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1185 return 0;
1186}
1187
wengang wang4ac35c22009-02-10 11:27:51 +08001188/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1189 * setting size to 0 may fail for some specific file systems by the permission
1190 * checking which requires WRITE permission but the mode is 000.
1191 * we ignore the resizing(to 0) on the just new created file, since the size is
1192 * 0 after file created.
1193 *
1194 * call this only after vfs_create() is called.
1195 * */
1196static void
1197nfsd_check_ignore_resizing(struct iattr *iap)
1198{
1199 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1200 iap->ia_valid &= ~ATTR_SIZE;
1201}
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203/*
1204 * Create a file (regular, directory, device, fifo); UNIX sockets
1205 * not yet implemented.
1206 * If the response fh has been verified, the parent directory should
1207 * already be locked. Note that the parent directory is left locked.
1208 *
1209 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1210 */
Al Viro6264d692006-10-19 23:28:58 -07001211__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1213 char *fname, int flen, struct iattr *iap,
1214 int type, dev_t rdev, struct svc_fh *resfhp)
1215{
1216 struct dentry *dentry, *dchild = NULL;
1217 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001218 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001219 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001220 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 err = nfserr_perm;
1223 if (!flen)
1224 goto out;
1225 err = nfserr_exist;
1226 if (isdotent(fname, flen))
1227 goto out;
1228
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001229 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (err)
1231 goto out;
1232
1233 dentry = fhp->fh_dentry;
1234 dirp = dentry->d_inode;
1235
1236 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001237 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 goto out;
1239 /*
1240 * Check whether the response file handle has been verified yet.
1241 * If it has, the parent directory should already be locked.
1242 */
1243 if (!resfhp->fh_dentry) {
1244 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001245 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001247 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (IS_ERR(dchild))
1249 goto out_nfserr;
1250 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1251 if (err)
1252 goto out;
1253 } else {
1254 /* called from nfsd_proc_create */
1255 dchild = dget(resfhp->fh_dentry);
1256 if (!fhp->fh_locked) {
1257 /* not actually possible */
1258 printk(KERN_ERR
1259 "nfsd_create: parent %s/%s not locked!\n",
1260 dentry->d_parent->d_name.name,
1261 dentry->d_name.name);
Al Virod75f2b92006-01-18 17:43:44 -08001262 err = nfserr_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 goto out;
1264 }
1265 }
1266 /*
1267 * Make sure the child dentry is still negative ...
1268 */
1269 err = nfserr_exist;
1270 if (dchild->d_inode) {
1271 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1272 dentry->d_name.name, dchild->d_name.name);
1273 goto out;
1274 }
1275
1276 if (!(iap->ia_valid & ATTR_MODE))
1277 iap->ia_mode = 0;
1278 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1279
Miklos Szeredi07cad1d2008-07-01 15:38:35 +02001280 err = nfserr_inval;
1281 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1282 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1283 type);
1284 goto out;
1285 }
1286
1287 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1288 if (host_err)
1289 goto out_nfserr;
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 /*
1292 * Get the dir op function pointer.
1293 */
J. Bruce Fields088406b2006-11-08 17:44:59 -08001294 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 switch (type) {
1296 case S_IFREG:
Al Viro6264d692006-10-19 23:28:58 -07001297 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
wengang wang4ac35c22009-02-10 11:27:51 +08001298 if (!host_err)
1299 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 break;
1301 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001302 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 break;
1304 case S_IFCHR:
1305 case S_IFBLK:
1306 case S_IFIFO:
1307 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001308 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 break;
Dave Hansen463c3192008-02-15 14:37:57 -08001310 }
1311 if (host_err < 0) {
1312 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1313 goto out_nfserr;
1314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Ben Myersf5019122010-02-17 14:05:11 -06001316 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Ben Myersf5019122010-02-17 14:05:11 -06001318 /*
1319 * nfsd_setattr already committed the child. Transactional filesystems
1320 * had a chance to commit changes for both parent and child
1321 * simultaneously making the following commit_metadata a noop.
1322 */
1323 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001324 if (err2)
1325 err = err2;
Dave Hansen463c3192008-02-15 14:37:57 -08001326 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /*
1328 * Update the file handle to get the new inode info.
1329 */
1330 if (!err)
1331 err = fh_update(resfhp);
1332out:
1333 if (dchild && !IS_ERR(dchild))
1334 dput(dchild);
1335 return err;
1336
1337out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001338 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 goto out;
1340}
1341
1342#ifdef CONFIG_NFSD_V3
1343/*
1344 * NFSv3 version of nfsd_create
1345 */
Al Viro6264d692006-10-19 23:28:58 -07001346__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
1348 char *fname, int flen, struct iattr *iap,
1349 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001350 int *truncp, int *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
1352 struct dentry *dentry, *dchild = NULL;
1353 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001354 __be32 err;
1355 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 err = nfserr_perm;
1359 if (!flen)
1360 goto out;
1361 err = nfserr_exist;
1362 if (isdotent(fname, flen))
1363 goto out;
1364 if (!(iap->ia_valid & ATTR_MODE))
1365 iap->ia_mode = 0;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001366 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (err)
1368 goto out;
1369
1370 dentry = fhp->fh_dentry;
1371 dirp = dentry->d_inode;
1372
1373 /* Get all the sanity checks out of the way before
1374 * we lock the parent. */
1375 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001376 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 goto out;
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001378 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 /*
1381 * Compose the response file handle.
1382 */
1383 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001384 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (IS_ERR(dchild))
1386 goto out_nfserr;
1387
1388 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1389 if (err)
1390 goto out;
1391
1392 if (createmode == NFS3_CREATE_EXCLUSIVE) {
Peter Staubachc3978522007-01-26 00:57:00 -08001393 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001394 * the high bit set, so just clear the high bits. If this is
1395 * ever changed to use different attrs for storing the
1396 * verifier, then do_open_lookup() will also need to be fixed
1397 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
1399 v_mtime = verifier[0]&0x7fffffff;
1400 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
Dave Hansen463c3192008-02-15 14:37:57 -08001403 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1404 if (host_err)
1405 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (dchild->d_inode) {
1407 err = 0;
1408
1409 switch (createmode) {
1410 case NFS3_CREATE_UNCHECKED:
1411 if (! S_ISREG(dchild->d_inode->i_mode))
1412 err = nfserr_exist;
1413 else if (truncp) {
1414 /* in nfsv4, we need to treat this case a little
1415 * differently. we don't want to truncate the
1416 * file now; this would be wrong if the OPEN
1417 * fails for some other reason. furthermore,
1418 * if the size is nonzero, we should ignore it
1419 * according to spec!
1420 */
1421 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1422 }
1423 else {
1424 iap->ia_valid &= ATTR_SIZE;
1425 goto set_attr;
1426 }
1427 break;
1428 case NFS3_CREATE_EXCLUSIVE:
1429 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1430 && dchild->d_inode->i_atime.tv_sec == v_atime
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 && dchild->d_inode->i_size == 0 )
1432 break;
1433 /* fallthru */
1434 case NFS3_CREATE_GUARDED:
1435 err = nfserr_exist;
1436 }
Dave Hansen463c3192008-02-15 14:37:57 -08001437 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 goto out;
1439 }
1440
Al Viro6264d692006-10-19 23:28:58 -07001441 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
Dave Hansen463c3192008-02-15 14:37:57 -08001442 if (host_err < 0) {
1443 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001445 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001446 if (created)
1447 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
wengang wang4ac35c22009-02-10 11:27:51 +08001449 nfsd_check_ignore_resizing(iap);
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (createmode == NFS3_CREATE_EXCLUSIVE) {
Peter Staubachc3978522007-01-26 00:57:00 -08001452 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001454 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /* XXX someone who knows this better please fix it for nsec */
1456 iap->ia_mtime.tv_sec = v_mtime;
1457 iap->ia_atime.tv_sec = v_atime;
1458 iap->ia_mtime.tv_nsec = 0;
1459 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001463 err = nfsd_create_setattr(rqstp, resfhp, iap);
1464
1465 /*
1466 * nfsd_setattr already committed the child (and possibly also the parent).
1467 */
1468 if (!err)
1469 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001470
Dave Hansen463c3192008-02-15 14:37:57 -08001471 mnt_drop_write(fhp->fh_export->ex_path.mnt);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001472 /*
1473 * Update the filehandle to get the new inode info.
1474 */
1475 if (!err)
1476 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 out:
1479 fh_unlock(fhp);
1480 if (dchild && !IS_ERR(dchild))
1481 dput(dchild);
1482 return err;
1483
1484 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001485 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 goto out;
1487}
1488#endif /* CONFIG_NFSD_V3 */
1489
1490/*
1491 * Read a symlink. On entry, *lenp must contain the maximum path length that
1492 * fits into the buffer. On return, it contains the true length.
1493 * N.B. After this call fhp needs an fh_put
1494 */
Al Viro6264d692006-10-19 23:28:58 -07001495__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1497{
1498 struct dentry *dentry;
1499 struct inode *inode;
1500 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001501 __be32 err;
1502 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001504 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (err)
1506 goto out;
1507
1508 dentry = fhp->fh_dentry;
1509 inode = dentry->d_inode;
1510
1511 err = nfserr_inval;
Al Viroacfa4382008-12-04 10:06:33 -05001512 if (!inode->i_op->readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 goto out;
1514
Jan Blunck54775492008-02-14 19:38:39 -08001515 touch_atime(fhp->fh_export->ex_path.mnt, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 /* N.B. Why does this call need a get_fs()??
1517 * Remove the set_fs and watch the fireworks:-) --okir
1518 */
1519
1520 oldfs = get_fs(); set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -07001521 host_err = inode->i_op->readlink(dentry, buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 set_fs(oldfs);
1523
Al Viro6264d692006-10-19 23:28:58 -07001524 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001526 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 err = 0;
1528out:
1529 return err;
1530
1531out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001532 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 goto out;
1534}
1535
1536/*
1537 * Create a symlink and look up its inode
1538 * N.B. After this call _both_ fhp and resfhp need an fh_put
1539 */
Al Viro6264d692006-10-19 23:28:58 -07001540__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1542 char *fname, int flen,
1543 char *path, int plen,
1544 struct svc_fh *resfhp,
1545 struct iattr *iap)
1546{
1547 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001548 __be32 err, cerr;
1549 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 err = nfserr_noent;
1552 if (!flen || !plen)
1553 goto out;
1554 err = nfserr_exist;
1555 if (isdotent(fname, flen))
1556 goto out;
1557
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001558 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (err)
1560 goto out;
1561 fh_lock(fhp);
1562 dentry = fhp->fh_dentry;
1563 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001564 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 if (IS_ERR(dnew))
1566 goto out_nfserr;
1567
Dave Hansen75c3f292008-02-15 14:37:45 -08001568 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1569 if (host_err)
1570 goto out_nfserr;
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (unlikely(path[plen] != 0)) {
1573 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1574 if (path_alloced == NULL)
Al Viro6264d692006-10-19 23:28:58 -07001575 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 else {
1577 strncpy(path_alloced, path, plen);
1578 path_alloced[plen] = 0;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001579 host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 kfree(path_alloced);
1581 }
1582 } else
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001583 host_err = vfs_symlink(dentry->d_inode, dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001584 err = nfserrno(host_err);
Ben Myersf5019122010-02-17 14:05:11 -06001585 if (!err)
1586 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 fh_unlock(fhp);
1588
Dave Hansen75c3f292008-02-15 14:37:45 -08001589 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1592 dput(dnew);
1593 if (err==0) err = cerr;
1594out:
1595 return err;
1596
1597out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001598 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 goto out;
1600}
1601
1602/*
1603 * Create a hardlink
1604 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1605 */
Al Viro6264d692006-10-19 23:28:58 -07001606__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1608 char *name, int len, struct svc_fh *tfhp)
1609{
1610 struct dentry *ddir, *dnew, *dold;
J. Bruce Fields55b13352010-07-19 16:38:24 -04001611 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001612 __be32 err;
1613 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001615 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (err)
1617 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001618 err = fh_verify(rqstp, tfhp, -S_IFDIR, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 if (err)
1620 goto out;
1621
1622 err = nfserr_perm;
1623 if (!len)
1624 goto out;
1625 err = nfserr_exist;
1626 if (isdotent(name, len))
1627 goto out;
1628
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001629 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 ddir = ffhp->fh_dentry;
1631 dirp = ddir->d_inode;
1632
1633 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001634 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (IS_ERR(dnew))
1636 goto out_nfserr;
1637
1638 dold = tfhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Dave Hansen75c3f292008-02-15 14:37:45 -08001640 host_err = mnt_want_write(tfhp->fh_export->ex_path.mnt);
1641 if (host_err) {
1642 err = nfserrno(host_err);
1643 goto out_dput;
1644 }
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001645 err = nfserr_noent;
1646 if (!dold->d_inode)
1647 goto out_drop_write;
1648 host_err = nfsd_break_lease(dold->d_inode);
1649 if (host_err)
1650 goto out_drop_write;
Al Viro6264d692006-10-19 23:28:58 -07001651 host_err = vfs_link(dold, dirp, dnew);
1652 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001653 err = nfserrno(commit_metadata(ffhp));
1654 if (!err)
1655 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 } else {
Al Viro6264d692006-10-19 23:28:58 -07001657 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 err = nfserr_acces;
1659 else
Al Viro6264d692006-10-19 23:28:58 -07001660 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 }
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001662out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08001663 mnt_drop_write(tfhp->fh_export->ex_path.mnt);
1664out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001666out_unlock:
1667 fh_unlock(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668out:
1669 return err;
1670
1671out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001672 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001673 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
1676/*
1677 * Rename a file
1678 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1679 */
Al Viro6264d692006-10-19 23:28:58 -07001680__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1682 struct svc_fh *tfhp, char *tname, int tlen)
1683{
1684 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1685 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001686 __be32 err;
1687 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001689 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if (err)
1691 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001692 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 if (err)
1694 goto out;
1695
1696 fdentry = ffhp->fh_dentry;
1697 fdir = fdentry->d_inode;
1698
1699 tdentry = tfhp->fh_dentry;
1700 tdir = tdentry->d_inode;
1701
1702 err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
NeilBrowna56f3932006-06-30 01:56:10 -07001703 if (ffhp->fh_export != tfhp->fh_export)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 goto out;
1705
1706 err = nfserr_perm;
1707 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1708 goto out;
1709
1710 /* cannot use fh_lock as we need deadlock protective ordering
1711 * so do it by hand */
1712 trap = lock_rename(tdentry, fdentry);
1713 ffhp->fh_locked = tfhp->fh_locked = 1;
1714 fill_pre_wcc(ffhp);
1715 fill_pre_wcc(tfhp);
1716
1717 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001718 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (IS_ERR(odentry))
1720 goto out_nfserr;
1721
Al Viro6264d692006-10-19 23:28:58 -07001722 host_err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (!odentry->d_inode)
1724 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001725 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (odentry == trap)
1727 goto out_dput_old;
1728
1729 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001730 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (IS_ERR(ndentry))
1732 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001733 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (ndentry == trap)
1735 goto out_dput_new;
1736
Dave Hansen9079b1e2008-02-15 14:37:49 -08001737 host_err = -EXDEV;
1738 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1739 goto out_dput_new;
1740 host_err = mnt_want_write(ffhp->fh_export->ex_path.mnt);
1741 if (host_err)
1742 goto out_dput_new;
1743
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001744 host_err = nfsd_break_lease(odentry->d_inode);
1745 if (host_err)
1746 goto out_drop_write;
J. Bruce Fields83f6b0c2011-02-06 16:46:30 -05001747 if (ndentry->d_inode) {
1748 host_err = nfsd_break_lease(ndentry->d_inode);
1749 if (host_err)
1750 goto out_drop_write;
1751 }
1752 if (host_err)
1753 goto out_drop_write;
Al Viro6264d692006-10-19 23:28:58 -07001754 host_err = vfs_rename(fdir, odentry, tdir, ndentry);
Ben Myersf5019122010-02-17 14:05:11 -06001755 if (!host_err) {
1756 host_err = commit_metadata(tfhp);
Al Viro6264d692006-10-19 23:28:58 -07001757 if (!host_err)
Ben Myersf5019122010-02-17 14:05:11 -06001758 host_err = commit_metadata(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001760out_drop_write:
Dave Hansen9079b1e2008-02-15 14:37:49 -08001761 mnt_drop_write(ffhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 out_dput_new:
1763 dput(ndentry);
1764 out_dput_old:
1765 dput(odentry);
1766 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001767 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769 /* we cannot reply on fh_unlock on the two filehandles,
1770 * as that would do the wrong thing if the two directories
1771 * were the same, so again we do it by hand
1772 */
1773 fill_post_wcc(ffhp);
1774 fill_post_wcc(tfhp);
1775 unlock_rename(tdentry, fdentry);
1776 ffhp->fh_locked = tfhp->fh_locked = 0;
1777
1778out:
1779 return err;
1780}
1781
1782/*
1783 * Unlink a file or directory
1784 * N.B. After this call fhp needs an fh_put
1785 */
Al Viro6264d692006-10-19 23:28:58 -07001786__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1788 char *fname, int flen)
1789{
1790 struct dentry *dentry, *rdentry;
1791 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001792 __be32 err;
1793 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 err = nfserr_acces;
1796 if (!flen || isdotent(fname, flen))
1797 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001798 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 if (err)
1800 goto out;
1801
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001802 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 dentry = fhp->fh_dentry;
1804 dirp = dentry->d_inode;
1805
1806 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001807 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (IS_ERR(rdentry))
1809 goto out_nfserr;
1810
1811 if (!rdentry->d_inode) {
1812 dput(rdentry);
1813 err = nfserr_noent;
1814 goto out;
1815 }
1816
1817 if (!type)
1818 type = rdentry->d_inode->i_mode & S_IFMT;
1819
Dave Hansen06227532008-02-15 14:37:34 -08001820 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1821 if (host_err)
J. Bruce Fields541ce982011-01-14 20:00:02 -05001822 goto out_put;
Dave Hansen06227532008-02-15 14:37:34 -08001823
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001824 host_err = nfsd_break_lease(rdentry->d_inode);
1825 if (host_err)
J. Bruce Fields541ce982011-01-14 20:00:02 -05001826 goto out_drop_write;
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001827 if (type != S_IFDIR)
Al Viro6264d692006-10-19 23:28:58 -07001828 host_err = vfs_unlink(dirp, rdentry);
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001829 else
Al Viro6264d692006-10-19 23:28:58 -07001830 host_err = vfs_rmdir(dirp, rdentry);
J. Bruce Fields541ce982011-01-14 20:00:02 -05001831 if (!host_err)
1832 host_err = commit_metadata(fhp);
1833out_drop_write:
1834 mnt_drop_write(fhp->fh_export->ex_path.mnt);
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001835out_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 dput(rdentry);
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001839 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001840out:
1841 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843
1844/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001845 * We do this buffering because we must not call back into the file
1846 * system's ->lookup() method from the filldir callback. That may well
1847 * deadlock a number of file systems.
1848 *
1849 * This is based heavily on the implementation of same in XFS.
1850 */
1851struct buffered_dirent {
1852 u64 ino;
1853 loff_t offset;
1854 int namlen;
1855 unsigned int d_type;
1856 char name[];
1857};
1858
1859struct readdir_data {
1860 char *dirent;
1861 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001862 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001863};
1864
1865static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
1866 loff_t offset, u64 ino, unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001867{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001868 struct readdir_data *buf = __buf;
1869 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1870 unsigned int reclen;
1871
1872 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001873 if (buf->used + reclen > PAGE_SIZE) {
1874 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001875 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001876 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001877
1878 de->namlen = namlen;
1879 de->offset = offset;
1880 de->ino = ino;
1881 de->d_type = d_type;
1882 memcpy(de->name, name, namlen);
1883 buf->used += reclen;
1884
1885 return 0;
1886}
1887
David Woodhouse2f9092e2009-04-20 23:18:37 +01001888static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
1889 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001890{
1891 struct readdir_data buf;
1892 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001893 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001894 int size;
1895 loff_t offset;
David Woodhouse2628b762008-07-31 17:16:51 +01001896
David Woodhouse14f7dd62008-07-31 20:29:12 +01001897 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
1898 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001899 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001900
David Woodhouse14f7dd62008-07-31 20:29:12 +01001901 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001902
1903 while (1) {
David Woodhouse2f9092e2009-04-20 23:18:37 +01001904 struct inode *dir_inode = file->f_path.dentry->d_inode;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001905 unsigned int reclen;
1906
Doug Nazarb726e922008-11-05 06:16:28 -05001907 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001908 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001909 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001910
1911 host_err = vfs_readdir(file, nfsd_buffered_filldir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -04001912 if (buf.full)
1913 host_err = 0;
1914
1915 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001916 break;
1917
1918 size = buf.used;
1919
1920 if (!size)
1921 break;
1922
David Woodhouse2f9092e2009-04-20 23:18:37 +01001923 /*
1924 * Various filldir functions may end up calling back into
1925 * lookup_one_len() and the file system's ->lookup() method.
1926 * These expect i_mutex to be held, as it would within readdir.
1927 */
1928 host_err = mutex_lock_killable(&dir_inode->i_mutex);
1929 if (host_err)
1930 break;
1931
David Woodhouse14f7dd62008-07-31 20:29:12 +01001932 de = (struct buffered_dirent *)buf.dirent;
1933 while (size > 0) {
1934 offset = de->offset;
1935
1936 if (func(cdp, de->name, de->namlen, de->offset,
1937 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01001938 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001939
1940 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001941 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001942
1943 reclen = ALIGN(sizeof(*de) + de->namlen,
1944 sizeof(u64));
1945 size -= reclen;
1946 de = (struct buffered_dirent *)((char *)de + reclen);
1947 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01001948 mutex_unlock(&dir_inode->i_mutex);
1949 if (size > 0) /* We bailed out early */
1950 break;
1951
David Woodhousec002a6c2008-08-17 17:21:18 +01001952 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001953 }
1954
David Woodhouse14f7dd62008-07-31 20:29:12 +01001955 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01001956
1957 if (host_err)
1958 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001959
1960 *offsetp = offset;
1961 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01001962}
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964/*
1965 * Read entries from a directory.
1966 * The NFSv3/4 verifier we ignore for now.
1967 */
Al Viro6264d692006-10-19 23:28:58 -07001968__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
NeilBrowna0ad13e2007-01-26 00:57:10 -08001970 struct readdir_cd *cdp, filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
Al Viro6264d692006-10-19 23:28:58 -07001972 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 struct file *file;
1974 loff_t offset = *offsetp;
1975
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001976 err = nfsd_open(rqstp, fhp, S_IFDIR, NFSD_MAY_READ, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (err)
1978 goto out;
1979
1980 offset = vfs_llseek(file, offset, 0);
1981 if (offset < 0) {
1982 err = nfserrno((int)offset);
1983 goto out_close;
1984 }
1985
David Woodhouse14f7dd62008-07-31 20:29:12 +01001986 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 if (err == nfserr_eof || err == nfserr_toosmall)
1989 err = nfs_ok; /* can still be found in ->err */
1990out_close:
1991 nfsd_close(file);
1992out:
1993 return err;
1994}
1995
1996/*
1997 * Get file system stats
1998 * N.B. After this call fhp needs an fh_put
1999 */
Al Viro6264d692006-10-19 23:28:58 -07002000__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04002001nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002{
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002003 __be32 err;
2004
2005 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
Takashi Iwaif6360ef2010-08-13 15:53:49 +02002006 if (!err) {
2007 struct path path = {
2008 .mnt = fhp->fh_export->ex_path.mnt,
2009 .dentry = fhp->fh_dentry,
2010 };
2011 if (vfs_statfs(&path, stat))
2012 err = nfserr_io;
2013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 return err;
2015}
2016
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002017static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002018{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002019 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002020}
2021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022/*
2023 * Check for a user's access permissions to this inode.
2024 */
Al Viro6264d692006-10-19 23:28:58 -07002025__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07002026nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2027 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
2029 struct inode *inode = dentry->d_inode;
2030 int err;
2031
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002032 if (acc == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return 0;
2034#if 0
2035 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2036 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002037 (acc & NFSD_MAY_READ)? " read" : "",
2038 (acc & NFSD_MAY_WRITE)? " write" : "",
2039 (acc & NFSD_MAY_EXEC)? " exec" : "",
2040 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2041 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2042 (acc & NFSD_MAY_LOCK)? " lock" : "",
2043 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 inode->i_mode,
2045 IS_IMMUTABLE(inode)? " immut" : "",
2046 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08002047 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11002049 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050#endif
2051
2052 /* Normally we reject any write/sattr etc access on a read-only file
2053 * system. But if it is IRIX doing check on write-access for a
2054 * device special file, we ignore rofs.
2055 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002056 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2057 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08002058 if (exp_rdonly(rqstp, exp) ||
2059 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002061 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 return nfserr_perm;
2063 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002064 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return nfserr_perm;
2066
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002067 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 /* If we cannot rely on authentication in NLM requests,
2069 * just allow locks, otherwise require read permission, or
2070 * ownership
2071 */
2072 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2073 return 0;
2074 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002075 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
2077 /*
2078 * The file owner always gets access permission for accesses that
2079 * would normally be checked at open time. This is to make
2080 * file access work even when the client has done a fchmod(fd, 0).
2081 *
2082 * However, `cp foo bar' should fail nevertheless when bar is
2083 * readonly. A sensible way to do this might be to reject all
2084 * attempts to truncate a read-only file, because a creat() call
2085 * always implies file truncation.
2086 * ... but this isn't really fair. A process may reasonably call
2087 * ftruncate on an open file descriptor on a file with perm 000.
2088 * We must trust the client to do permission checking - using "ACCESS"
2089 * with NFSv3.
2090 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002091 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
David Howells5cc0a842008-11-14 10:38:58 +11002092 inode->i_uid == current_fsuid())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return 0;
2094
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002095 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04002096 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 /* Allow read access to binaries even when mode 111 */
2099 if (err == -EACCES && S_ISREG(inode->i_mode) &&
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002100 acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE))
Al Virof419a2e2008-07-22 00:07:17 -04002101 err = inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 return err? nfserrno(err) : 0;
2104}
2105
2106void
2107nfsd_racache_shutdown(void)
2108{
Jeff Layton54a66e52008-08-13 22:03:27 -04002109 struct raparms *raparm, *last_raparm;
2110 unsigned int i;
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04002113
2114 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2115 raparm = raparm_hash[i].pb_head;
2116 while(raparm) {
2117 last_raparm = raparm;
2118 raparm = raparm->p_next;
2119 kfree(last_raparm);
2120 }
2121 raparm_hash[i].pb_head = NULL;
2122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124/*
2125 * Initialize readahead param cache
2126 */
2127int
2128nfsd_racache_init(int cache_size)
2129{
2130 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002131 int j = 0;
2132 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002133 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Greg Banksfce14562006-10-04 02:15:49 -07002135
Jeff Layton54a66e52008-08-13 22:03:27 -04002136 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002138 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
2139 if (nperbucket < 2)
2140 nperbucket = 2;
2141 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002142
2143 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002144
2145 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002146 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002147
2148 raparm = &raparm_hash[i].pb_head;
2149 for (j = 0; j < nperbucket; j++) {
2150 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2151 if (!*raparm)
2152 goto out_nomem;
2153 raparm = &(*raparm)->p_next;
2154 }
2155 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002156 }
2157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 nfsdstats.ra_size = cache_size;
2159 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002160
2161out_nomem:
2162 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2163 nfsd_racache_shutdown();
2164 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165}
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002166
2167#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
2168struct posix_acl *
2169nfsd_get_posix_acl(struct svc_fh *fhp, int type)
2170{
2171 struct inode *inode = fhp->fh_dentry->d_inode;
2172 char *name;
2173 void *value = NULL;
2174 ssize_t size;
2175 struct posix_acl *acl;
2176
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002177 if (!IS_POSIXACL(inode))
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002178 return ERR_PTR(-EOPNOTSUPP);
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002179
2180 switch (type) {
2181 case ACL_TYPE_ACCESS:
2182 name = POSIX_ACL_XATTR_ACCESS;
2183 break;
2184 case ACL_TYPE_DEFAULT:
2185 name = POSIX_ACL_XATTR_DEFAULT;
2186 break;
2187 default:
2188 return ERR_PTR(-EOPNOTSUPP);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002189 }
2190
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002191 size = nfsd_getxattr(fhp->fh_dentry, name, &value);
2192 if (size < 0)
2193 return ERR_PTR(size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002194
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002195 acl = posix_acl_from_xattr(value, size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002196 kfree(value);
2197 return acl;
2198}
2199
2200int
2201nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
2202{
2203 struct inode *inode = fhp->fh_dentry->d_inode;
2204 char *name;
2205 void *value = NULL;
2206 size_t size;
2207 int error;
2208
Al Viroacfa4382008-12-04 10:06:33 -05002209 if (!IS_POSIXACL(inode) ||
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002210 !inode->i_op->setxattr || !inode->i_op->removexattr)
2211 return -EOPNOTSUPP;
2212 switch(type) {
2213 case ACL_TYPE_ACCESS:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002214 name = POSIX_ACL_XATTR_ACCESS;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002215 break;
2216 case ACL_TYPE_DEFAULT:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002217 name = POSIX_ACL_XATTR_DEFAULT;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002218 break;
2219 default:
2220 return -EOPNOTSUPP;
2221 }
2222
2223 if (acl && acl->a_count) {
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002224 size = posix_acl_xattr_size(acl->a_count);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002225 value = kmalloc(size, GFP_KERNEL);
2226 if (!value)
2227 return -ENOMEM;
Florin Malita9ccfc292006-05-20 14:59:58 -07002228 error = posix_acl_to_xattr(acl, value, size);
2229 if (error < 0)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002230 goto getout;
Florin Malita9ccfc292006-05-20 14:59:58 -07002231 size = error;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002232 } else
2233 size = 0;
2234
Dave Hansen18f335a2008-02-15 14:37:38 -08002235 error = mnt_want_write(fhp->fh_export->ex_path.mnt);
2236 if (error)
2237 goto getout;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002238 if (size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002239 error = vfs_setxattr(fhp->fh_dentry, name, value, size, 0);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002240 else {
2241 if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
2242 error = 0;
2243 else {
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002244 error = vfs_removexattr(fhp->fh_dentry, name);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002245 if (error == -ENODATA)
2246 error = 0;
2247 }
2248 }
Dave Hansen18f335a2008-02-15 14:37:38 -08002249 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002250
2251getout:
2252 kfree(value);
2253 return error;
2254}
2255#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */