blob: 0a01e2fc5dda81c23ca4b2af567d8656bd569316 [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 Viro9393bd02009-04-18 13:58:15 -040090 while (d_mountpoint(path.dentry) && follow_down(&path))
Al Viro91c9fa82009-04-18 02:42:05 -040091 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Al Viro91c9fa82009-04-18 02:42:05 -040093 exp2 = rqst_exp_get_by_name(rqstp, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 if (IS_ERR(exp2)) {
J. Bruce Fields3b6cee7bc2009-10-25 21:18:19 -040095 err = PTR_ERR(exp2);
96 /*
97 * We normally allow NFS clients to continue
98 * "underneath" a mountpoint that is not exported.
99 * The exception is V4ROOT, where no traversal is ever
100 * allowed without an explicit export of the new
101 * directory.
102 */
103 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
104 err = 0;
Al Viro91c9fa82009-04-18 02:42:05 -0400105 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 goto out;
107 }
Steve Dickson3c394dd2009-09-09 15:02:40 -0400108 if (nfsd_v4client(rqstp) ||
109 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 /* successfully crossed mount point */
Al Viro1644ccc2009-04-18 02:32:31 -0400111 /*
Al Viro91c9fa82009-04-18 02:42:05 -0400112 * This is subtle: path.dentry is *not* on path.mnt
113 * at this point. The only reason we are safe is that
114 * original mnt is pinned down by exp, so we should
115 * put path *before* putting exp
Al Viro1644ccc2009-04-18 02:32:31 -0400116 */
Al Viro91c9fa82009-04-18 02:42:05 -0400117 *dpp = path.dentry;
118 path.dentry = dentry;
Al Viro1644ccc2009-04-18 02:32:31 -0400119 *expp = exp2;
Al Viro91c9fa82009-04-18 02:42:05 -0400120 exp2 = exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 }
Al Viro91c9fa82009-04-18 02:42:05 -0400122 path_put(&path);
123 exp_put(exp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124out:
125 return err;
126}
127
J. Bruce Fields289ede42009-09-26 20:32:24 -0400128static void follow_to_parent(struct path *path)
129{
130 struct dentry *dp;
131
132 while (path->dentry == path->mnt->mnt_root && follow_up(path))
133 ;
134 dp = dget_parent(path->dentry);
135 dput(path->dentry);
136 path->dentry = dp;
137}
138
139static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
140{
141 struct svc_export *exp2;
142 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
143 .dentry = dget(dparent)};
144
145 follow_to_parent(&path);
146
147 exp2 = rqst_exp_parent(rqstp, &path);
148 if (PTR_ERR(exp2) == -ENOENT) {
149 *dentryp = dget(dparent);
150 } else if (IS_ERR(exp2)) {
151 path_put(&path);
152 return PTR_ERR(exp2);
153 } else {
154 *dentryp = dget(path.dentry);
155 exp_put(*exp);
156 *exp = exp2;
157 }
158 path_put(&path);
159 return 0;
160}
161
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400162/*
163 * For nfsd purposes, we treat V4ROOT exports as though there was an
164 * export at *every* directory.
165 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -0400166int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400167{
168 if (d_mountpoint(dentry))
169 return 1;
170 if (!(exp->ex_flags & NFSEXP_V4ROOT))
171 return 0;
172 return dentry->d_inode != NULL;
173}
174
Al Viro6264d692006-10-19 23:28:58 -0700175__be32
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700176nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400177 const char *name, unsigned int len,
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700178 struct svc_export **exp_ret, struct dentry **dentry_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct svc_export *exp;
181 struct dentry *dparent;
182 struct dentry *dentry;
Al Viro6264d692006-10-19 23:28:58 -0700183 __be32 err;
184 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
187
188 /* Obtain dentry and export. */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200189 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (err)
191 return err;
192
193 dparent = fhp->fh_dentry;
194 exp = fhp->fh_export;
195 exp_get(exp);
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* Lookup the name, but don't follow links */
198 if (isdotent(name, len)) {
199 if (len==1)
200 dentry = dget(dparent);
Jan Blunck54775492008-02-14 19:38:39 -0800201 else if (dparent != exp->ex_path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 dentry = dget_parent(dparent);
J. Bruce Fieldsfed83812009-09-26 16:53:01 -0400203 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 dentry = dget(dparent); /* .. == . just like at / */
205 else {
206 /* checking mountpoint crossing is very different when stepping up */
J. Bruce Fields289ede42009-09-26 20:32:24 -0400207 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
208 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211 } else {
212 fh_lock(fhp);
213 dentry = lookup_one_len(name, dparent, len);
Al Viro6264d692006-10-19 23:28:58 -0700214 host_err = PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (IS_ERR(dentry))
216 goto out_nfserr;
217 /*
218 * check if we have crossed a mount point ...
219 */
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400220 if (nfsd_mountpoint(dentry, exp)) {
Al Viro6264d692006-10-19 23:28:58 -0700221 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 dput(dentry);
223 goto out_nfserr;
224 }
225 }
226 }
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700227 *dentry_ret = dentry;
228 *exp_ret = exp;
229 return 0;
230
231out_nfserr:
232 exp_put(exp);
233 return nfserrno(host_err);
234}
235
236/*
237 * Look up one component of a pathname.
238 * N.B. After this call _both_ fhp and resfh need an fh_put
239 *
240 * If the lookup would cross a mountpoint, and the mounted filesystem
241 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
242 * accepted as it stands and the mounted directory is
243 * returned. Otherwise the covered directory is returned.
244 * NOTE: this mountpoint crossing is not supported properly by all
245 * clients and is explicitly disallowed for NFSv3
246 * NeilBrown <neilb@cse.unsw.edu.au>
247 */
248__be32
249nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400250 unsigned int len, struct svc_fh *resfh)
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700251{
252 struct svc_export *exp;
253 struct dentry *dentry;
254 __be32 err;
255
256 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
257 if (err)
258 return err;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700259 err = check_nfsd_access(exp, rqstp);
260 if (err)
261 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /*
263 * Note: we compose the file handle now, but as the
264 * dentry may be negative, it may need to be updated.
265 */
266 err = fh_compose(resfh, exp, dentry, fhp);
267 if (!err && !dentry->d_inode)
268 err = nfserr_noent;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700269out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 exp_put(exp);
272 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Ben Myersf5019122010-02-17 14:05:11 -0600275/*
276 * Commit metadata changes to stable storage.
277 */
278static int
279commit_metadata(struct svc_fh *fhp)
280{
281 struct inode *inode = fhp->fh_dentry->d_inode;
282 const struct export_operations *export_ops = inode->i_sb->s_export_op;
Ben Myersf5019122010-02-17 14:05:11 -0600283
284 if (!EX_ISSYNC(fhp->fh_export))
285 return 0;
286
Christoph Hellwigc37650162010-10-06 10:48:20 +0200287 if (export_ops->commit_metadata)
288 return export_ops->commit_metadata(inode);
289 return sync_inode_metadata(inode, 1);
Ben Myersf5019122010-02-17 14:05:11 -0600290}
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/*
293 * Set various file attributes.
294 * N.B. After this call fhp needs an fh_put
295 */
Al Viro6264d692006-10-19 23:28:58 -0700296__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
298 int check_guard, time_t guardtime)
299{
300 struct dentry *dentry;
301 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200302 int accmode = NFSD_MAY_SATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 int ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700304 __be32 err;
305 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 int size_change = 0;
307
308 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200309 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (iap->ia_valid & ATTR_SIZE)
311 ftype = S_IFREG;
312
313 /* Get inode */
314 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800315 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 goto out;
317
318 dentry = fhp->fh_dentry;
319 inode = dentry->d_inode;
320
NeilBrown15b7a1b2005-11-07 01:00:23 -0800321 /* Ignore any mode updates on symlinks */
322 if (S_ISLNK(inode->i_mode))
323 iap->ia_valid &= ~ATTR_MODE;
324
325 if (!iap->ia_valid)
326 goto out;
327
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000328 /*
329 * NFSv2 does not differentiate between "set-[ac]time-to-now"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * which only requires access, and "set-[ac]time-to-X" which
331 * requires ownership.
332 * So if it looks like it might be "set both to the same time which
333 * is close to now", and if inode_change_ok fails, then we
334 * convert to "set to now" instead of "set to explicit time"
335 *
336 * We only call inode_change_ok as the last test as technically
337 * it is not an interface that we should be using. It is only
338 * valid if the filesystem does not define it's own i_op->setattr.
339 */
340#define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
341#define MAX_TOUCH_TIME_ERROR (30*60)
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000342 if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
343 iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
344 /*
345 * Looks probable.
346 *
347 * Now just make sure time is in the right ballpark.
348 * Solaris, at least, doesn't seem to care what the time
349 * request is. We require it be within 30 minutes of now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000351 time_t delta = iap->ia_atime.tv_sec - get_seconds();
352 if (delta < 0)
353 delta = -delta;
354 if (delta < MAX_TOUCH_TIME_ERROR &&
355 inode_change_ok(inode, iap) != 0) {
356 /*
357 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
358 * This will cause notify_change to set these times
359 * to "now"
360 */
361 iap->ia_valid &= ~BOTH_TIME_SET;
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000365 /*
366 * The size case is special.
367 * It changes the file as well as the attributes.
368 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (iap->ia_valid & ATTR_SIZE) {
370 if (iap->ia_size < inode->i_size) {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200371 err = nfsd_permission(rqstp, fhp->fh_export, dentry,
372 NFSD_MAY_TRUNC|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (err)
374 goto out;
375 }
376
377 /*
378 * If we are changing the size of the file, then
379 * we need to break all leases.
380 */
Al Viro8737c932009-12-24 06:47:55 -0500381 host_err = break_lease(inode, O_WRONLY | O_NONBLOCK);
Al Viro6264d692006-10-19 23:28:58 -0700382 if (host_err) /* ENOMEM or EWOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto out_nfserr;
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) {
425 fh_lock(fhp);
Al Viro6264d692006-10-19 23:28:58 -0700426 host_err = notify_change(dentry, iap);
427 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 fh_unlock(fhp);
429 }
430 if (size_change)
431 put_write_access(inode);
432 if (!err)
Christoph Hellwigb160fda2010-06-01 21:59:18 +0200433 commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434out:
435 return err;
436
437out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700438 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 goto out;
440}
441
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800442#if defined(CONFIG_NFSD_V2_ACL) || \
443 defined(CONFIG_NFSD_V3_ACL) || \
444 defined(CONFIG_NFSD_V4)
445static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
446{
447 ssize_t buflen;
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530448 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800450 buflen = vfs_getxattr(dentry, key, NULL, 0);
451 if (buflen <= 0)
452 return buflen;
453
454 *buf = kmalloc(buflen, GFP_KERNEL);
455 if (!*buf)
456 return -ENOMEM;
457
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530458 ret = vfs_getxattr(dentry, key, *buf, buflen);
459 if (ret < 0)
460 kfree(*buf);
461 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800462}
463#endif
464
465#if defined(CONFIG_NFSD_V4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466static int
467set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
468{
469 int len;
470 size_t buflen;
471 char *buf = NULL;
472 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 buflen = posix_acl_xattr_size(pacl->a_count);
475 buf = kmalloc(buflen, GFP_KERNEL);
476 error = -ENOMEM;
477 if (buf == NULL)
478 goto out;
479
480 len = posix_acl_to_xattr(pacl, buf, buflen);
481 if (len < 0) {
482 error = len;
483 goto out;
484 }
485
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800486 error = vfs_setxattr(dentry, key, buf, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487out:
488 kfree(buf);
489 return error;
490}
491
Al Viro6264d692006-10-19 23:28:58 -0700492__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
494 struct nfs4_acl *acl)
495{
Al Viro6264d692006-10-19 23:28:58 -0700496 __be32 error;
497 int host_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 struct dentry *dentry;
499 struct inode *inode;
500 struct posix_acl *pacl = NULL, *dpacl = NULL;
501 unsigned int flags = 0;
502
503 /* Get inode */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200504 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (error)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700506 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 dentry = fhp->fh_dentry;
509 inode = dentry->d_inode;
510 if (S_ISDIR(inode->i_mode))
511 flags = NFS4_ACL_DIR;
512
Al Viro6264d692006-10-19 23:28:58 -0700513 host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
514 if (host_error == -EINVAL) {
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700515 return nfserr_attrnotsupp;
Al Viro6264d692006-10-19 23:28:58 -0700516 } else if (host_error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto out_nfserr;
518
Al Viro6264d692006-10-19 23:28:58 -0700519 host_error = set_nfsv4_acl_one(dentry, pacl, POSIX_ACL_XATTR_ACCESS);
520 if (host_error < 0)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700521 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700523 if (S_ISDIR(inode->i_mode))
Al Viro6264d692006-10-19 23:28:58 -0700524 host_error = set_nfsv4_acl_one(dentry, dpacl, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700526out_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 posix_acl_release(pacl);
528 posix_acl_release(dpacl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529out_nfserr:
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800530 if (host_error == -EOPNOTSUPP)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700531 return nfserr_attrnotsupp;
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800532 else
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700533 return nfserrno(host_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536static struct posix_acl *
537_get_posix_acl(struct dentry *dentry, char *key)
538{
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800539 void *buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct posix_acl *pacl = NULL;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800541 int buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800543 buflen = nfsd_getxattr(dentry, key, &buf);
544 if (!buflen)
545 buflen = -ENODATA;
546 if (buflen <= 0)
547 return ERR_PTR(buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 pacl = posix_acl_from_xattr(buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 kfree(buf);
551 return pacl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554int
555nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
556{
557 struct inode *inode = dentry->d_inode;
558 int error = 0;
559 struct posix_acl *pacl = NULL, *dpacl = NULL;
560 unsigned int flags = 0;
561
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700562 pacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_ACCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
564 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
565 if (IS_ERR(pacl)) {
566 error = PTR_ERR(pacl);
567 pacl = NULL;
568 goto out;
569 }
570
571 if (S_ISDIR(inode->i_mode)) {
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700572 dpacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
574 dpacl = NULL;
575 else if (IS_ERR(dpacl)) {
576 error = PTR_ERR(dpacl);
577 dpacl = NULL;
578 goto out;
579 }
580 flags = NFS4_ACL_DIR;
581 }
582
583 *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
584 if (IS_ERR(*acl)) {
585 error = PTR_ERR(*acl);
586 *acl = NULL;
587 }
588 out:
589 posix_acl_release(pacl);
590 posix_acl_release(dpacl);
591 return error;
592}
593
J. Bruce Fields6a85d6c2010-07-06 12:39:12 -0400594#endif /* defined(CONFIG_NFSD_V4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596#ifdef CONFIG_NFSD_V3
597/*
598 * Check server access rights to a file system object
599 */
600struct accessmap {
601 u32 access;
602 int how;
603};
604static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200605 { NFS3_ACCESS_READ, NFSD_MAY_READ },
606 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
607 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
608 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 { 0, 0 }
611};
612
613static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200614 { NFS3_ACCESS_READ, NFSD_MAY_READ },
615 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
616 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
617 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
618 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 { 0, 0 }
621};
622
623static struct accessmap nfs3_anyaccess[] = {
624 /* Some clients - Solaris 2.6 at least, make an access call
625 * to the server to check for access for things like /dev/null
626 * (which really, the server doesn't care about). So
627 * We provide simple access checking for them, looking
628 * mainly at mode bits, and we make sure to ignore read-only
629 * filesystem checks
630 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200631 { NFS3_ACCESS_READ, NFSD_MAY_READ },
632 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
633 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
634 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 { 0, 0 }
637};
638
Al Viro6264d692006-10-19 23:28:58 -0700639__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
641{
642 struct accessmap *map;
643 struct svc_export *export;
644 struct dentry *dentry;
645 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700646 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200648 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (error)
650 goto out;
651
652 export = fhp->fh_export;
653 dentry = fhp->fh_dentry;
654
655 if (S_ISREG(dentry->d_inode->i_mode))
656 map = nfs3_regaccess;
657 else if (S_ISDIR(dentry->d_inode->i_mode))
658 map = nfs3_diraccess;
659 else
660 map = nfs3_anyaccess;
661
662
663 query = *access;
664 for (; map->access; map++) {
665 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700666 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 sresult |= map->access;
669
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700670 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 switch (err2) {
672 case nfs_ok:
673 result |= map->access;
674 break;
675
676 /* the following error codes just mean the access was not allowed,
677 * rather than an error occurred */
678 case nfserr_rofs:
679 case nfserr_acces:
680 case nfserr_perm:
681 /* simply don't "or" in the access bit. */
682 break;
683 default:
684 error = err2;
685 goto out;
686 }
687 }
688 }
689 *access = result;
690 if (supported)
691 *supported = sresult;
692
693 out:
694 return error;
695}
696#endif /* CONFIG_NFSD_V3 */
697
698
699
700/*
701 * Open an existing file or directory.
702 * The access argument indicates the type of open (read/write/lock)
703 * N.B. After this call fhp needs an fh_put
704 */
Al Viro6264d692006-10-19 23:28:58 -0700705__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
707 int access, struct file **filp)
708{
709 struct dentry *dentry;
710 struct inode *inode;
Al Viro6264d692006-10-19 23:28:58 -0700711 int flags = O_RDONLY|O_LARGEFILE;
712 __be32 err;
Jeff Layton91885252010-03-19 08:06:28 -0400713 int host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
David Howellse0e81732009-09-02 09:13:40 +0100715 validate_process_creds();
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /*
718 * If we get here, then the client has already done an "open",
719 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
720 * in case a chmod has now revoked permission.
721 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200722 err = fh_verify(rqstp, fhp, type, access | NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (err)
724 goto out;
725
726 dentry = fhp->fh_dentry;
727 inode = dentry->d_inode;
728
729 /* Disallow write access to files with the append-only bit set
730 * or any access when mandatory locking enabled
731 */
732 err = nfserr_perm;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200733 if (IS_APPEND(inode) && (access & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400735 /*
736 * We must ignore files (but only files) which might have mandatory
737 * locks on them because there is no way to know if the accesser has
738 * the lock.
739 */
740 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 goto out;
742
743 if (!inode->i_fop)
744 goto out;
745
746 /*
747 * Check to see if there are any leases on this file.
748 * This may block while leases are broken.
749 */
Jeff Layton91885252010-03-19 08:06:28 -0400750 if (!(access & NFSD_MAY_NOT_BREAK_LEASE))
751 host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0));
Al Viro6264d692006-10-19 23:28:58 -0700752 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 goto out_nfserr;
754
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200755 if (access & NFSD_MAY_WRITE) {
756 if (access & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700757 flags = O_RDWR|O_LARGEFILE;
758 else
759 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
Jan Blunck54775492008-02-14 19:38:39 -0800761 *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt),
David Howells033a6662009-07-02 14:35:32 +0100762 flags, current_cred());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (IS_ERR(*filp))
Al Viro6264d692006-10-19 23:28:58 -0700764 host_err = PTR_ERR(*filp);
Chuck Ebbertaeaa5cc2010-02-15 18:07:39 -0500765 else
766 host_err = ima_file_check(*filp, access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700768 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769out:
David Howellse0e81732009-09-02 09:13:40 +0100770 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return err;
772}
773
774/*
775 * Close a file.
776 */
777void
778nfsd_close(struct file *filp)
779{
780 fput(filp);
781}
782
J. Bruce Fields9a8d2482009-01-06 13:37:03 -0500783/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 * Obtain the readahead parameters for the file
785 * specified by (dev, ino).
786 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788static inline struct raparms *
789nfsd_get_raparms(dev_t dev, ino_t ino)
790{
791 struct raparms *ra, **rap, **frap = NULL;
792 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700793 unsigned int hash;
794 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Greg Banksfce14562006-10-04 02:15:49 -0700796 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
797 rab = &raparm_hash[hash];
798
799 spin_lock(&rab->pb_lock);
800 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (ra->p_ino == ino && ra->p_dev == dev)
802 goto found;
803 depth++;
804 if (ra->p_count == 0)
805 frap = rap;
806 }
807 depth = nfsdstats.ra_size*11/10;
808 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700809 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return NULL;
811 }
812 rap = frap;
813 ra = *frap;
814 ra->p_dev = dev;
815 ra->p_ino = ino;
816 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700817 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818found:
Greg Banksfce14562006-10-04 02:15:49 -0700819 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700821 ra->p_next = rab->pb_head;
822 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824 ra->p_count++;
825 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700826 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return ra;
828}
829
830/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200831 * Grab and keep cached pages associated with a file in the svc_rqst
832 * so that they can be passed to the network sendmsg/sendpage routines
833 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
835static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200836nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
837 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Jens Axboecf8208d2007-06-12 21:22:14 +0200839 struct svc_rqst *rqstp = sd->u.data;
NeilBrown44524352006-10-04 02:15:46 -0700840 struct page **pp = rqstp->rq_respages + rqstp->rq_resused;
Jens Axboecf8208d2007-06-12 21:22:14 +0200841 struct page *page = buf->page;
842 size_t size;
843 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Jens Axboecac36bb02007-06-14 13:10:48 +0200845 ret = buf->ops->confirm(pipe, buf);
Jens Axboecf8208d2007-06-12 21:22:14 +0200846 if (unlikely(ret))
847 return ret;
848
849 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 if (rqstp->rq_res.page_len == 0) {
852 get_page(page);
NeilBrown44524352006-10-04 02:15:46 -0700853 put_page(*pp);
854 *pp = page;
855 rqstp->rq_resused++;
Jens Axboecf8208d2007-06-12 21:22:14 +0200856 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700858 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 get_page(page);
NeilBrown250f3912007-01-26 00:56:59 -0800860 if (*pp)
861 put_page(*pp);
NeilBrown44524352006-10-04 02:15:46 -0700862 *pp = page;
863 rqstp->rq_resused++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700865 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return size;
869}
870
Jens Axboecf8208d2007-06-12 21:22:14 +0200871static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
872 struct splice_desc *sd)
873{
874 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
875}
876
Al Viro6264d692006-10-19 23:28:58 -0700877static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
879 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
880{
881 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700883 __be32 err;
884 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 err = nfserr_perm;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800887 inode = file->f_path.dentry->d_inode;
Dave Hansena8754be2007-10-16 23:31:15 -0700888
Jens Axboecf8208d2007-06-12 21:22:14 +0200889 if (file->f_op->splice_read && rqstp->rq_splice_ok) {
890 struct splice_desc sd = {
891 .len = 0,
892 .total_len = *count,
893 .pos = offset,
894 .u.data = rqstp,
895 };
896
Jens Axboe4fbef202007-07-13 22:42:20 +0200897 rqstp->rq_resused = 1;
Jens Axboecf8208d2007-06-12 21:22:14 +0200898 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 } else {
900 oldfs = get_fs();
901 set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -0700902 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 set_fs(oldfs);
904 }
905
Al Viro6264d692006-10-19 23:28:58 -0700906 if (host_err >= 0) {
907 nfsdstats.io_read += host_err;
908 *count = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 err = 0;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500910 fsnotify_access(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 } else
Al Viro6264d692006-10-19 23:28:58 -0700912 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return err;
914}
915
Neil Brown9f708e42006-01-06 00:19:59 -0800916static void kill_suid(struct dentry *dentry)
917{
918 struct iattr ia;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700919 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
Neil Brown9f708e42006-01-06 00:19:59 -0800920
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800921 mutex_lock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -0800922 notify_change(dentry, &ia);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800923 mutex_unlock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -0800924}
925
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700926/*
927 * Gathered writes: If another process is currently writing to the file,
928 * there's a high chance this is another nfsd (triggered by a bulk write
929 * from a client's biod). Rather than syncing the file with each write
930 * request, we sleep for 10 msec.
931 *
932 * I don't know if this roughly approximates C. Juszak's idea of
933 * gathered writes, but it's a nice and simple solution (IMHO), and it
934 * seems to work:-)
935 *
936 * Note: we do this only in the NFSv2 case, since v3 and higher have a
937 * better tool (separate unstable writes and commits) for solving this
938 * problem.
939 */
940static int wait_for_concurrent_writes(struct file *file)
941{
942 struct inode *inode = file->f_path.dentry->d_inode;
943 static ino_t last_ino;
944 static dev_t last_dev;
945 int err = 0;
946
947 if (atomic_read(&inode->i_writecount) > 1
948 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
949 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
950 msleep(10);
951 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
952 }
953
954 if (inode->i_state & I_DIRTY) {
955 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100956 err = vfs_fsync(file, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700957 }
958 last_ino = inode->i_ino;
959 last_dev = inode->i_sb->s_dev;
960 return err;
961}
962
Al Viro6264d692006-10-19 23:28:58 -0700963static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
965 loff_t offset, struct kvec *vec, int vlen,
David Shaw31dec252009-03-05 20:16:14 -0500966 unsigned long *cnt, int *stablep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 struct svc_export *exp;
969 struct dentry *dentry;
970 struct inode *inode;
971 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700972 __be32 err = 0;
973 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 int stable = *stablep;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400975 int use_wgather;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800977 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 inode = dentry->d_inode;
979 exp = fhp->fh_export;
980
981 /*
982 * Request sync writes if
983 * - the sync export option has been set, or
984 * - the client requested O_SYNC behavior (NFSv3 feature).
985 * - The file system doesn't support fsync().
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400986 * When NFSv2 gathered writes have been configured for this volume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 * flushing the data to disk is handled separately below.
988 */
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400989 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Harvey Harrison3ba15142008-02-20 12:49:02 -0800991 if (!file->f_op->fsync) {/* COMMIT3 cannot work */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 stable = 2;
993 *stablep = 2; /* FILE_SYNC */
994 }
995
996 if (!EX_ISSYNC(exp))
997 stable = 0;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400998 if (stable && !use_wgather) {
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -0700999 spin_lock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 file->f_flags |= O_SYNC;
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07001001 spin_unlock(&file->f_lock);
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /* Write the data. */
1005 oldfs = get_fs(); set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -07001006 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001008 if (host_err < 0)
1009 goto out_nfserr;
1010 *cnt = host_err;
1011 nfsdstats.io_write += host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -05001012 fsnotify_modify(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 /* clear setuid/setgid flag after write */
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001015 if (inode->i_mode & (S_ISUID | S_ISGID))
Neil Brown9f708e42006-01-06 00:19:59 -08001016 kill_suid(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001018 if (stable && use_wgather)
J. Bruce Fieldsd911df72009-06-15 16:03:53 -07001019 host_err = wait_for_concurrent_writes(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001021out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001022 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001023 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001025 else
Al Viro6264d692006-10-19 23:28:58 -07001026 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return err;
1028}
1029
1030/*
1031 * Read data from a file. count must contain the requested read count
1032 * on entry. On return, *count contains the number of bytes actually read.
1033 * N.B. After this call fhp needs an fh_put
1034 */
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001035__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001036 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
1037{
1038 struct file *file;
1039 struct inode *inode;
1040 struct raparms *ra;
1041 __be32 err;
1042
1043 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
1044 if (err)
1045 return err;
1046
1047 inode = file->f_path.dentry->d_inode;
1048
1049 /* Get readahead parameters */
1050 ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
1051
1052 if (ra && ra->p_set)
1053 file->f_ra = ra->p_ra;
1054
1055 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1056
1057 /* Write back readahead params */
1058 if (ra) {
1059 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
1060 spin_lock(&rab->pb_lock);
1061 ra->p_ra = file->f_ra;
1062 ra->p_set = 1;
1063 ra->p_count--;
1064 spin_unlock(&rab->pb_lock);
1065 }
1066
1067 nfsd_close(file);
1068 return err;
1069}
1070
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001071/* As above, but use the provided file descriptor. */
Al Viro6264d692006-10-19 23:28:58 -07001072__be32
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001073nfsd_read_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 loff_t offset, struct kvec *vec, int vlen,
1075 unsigned long *count)
1076{
Al Viro6264d692006-10-19 23:28:58 -07001077 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001080 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001081 NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (err)
1083 goto out;
1084 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
J. Bruce Fields039a87c2010-07-30 11:33:32 -04001085 } else /* Note file may still be NULL in NFSv4 special stateid case: */
1086 err = nfsd_read(rqstp, fhp, offset, vec, vlen, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087out:
1088 return err;
1089}
1090
1091/*
1092 * Write data to a file.
1093 * The stable flag requests synchronous writes.
1094 * N.B. After this call fhp needs an fh_put
1095 */
Al Viro6264d692006-10-19 23:28:58 -07001096__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
David Shaw31dec252009-03-05 20:16:14 -05001098 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 int *stablep)
1100{
Al Viro6264d692006-10-19 23:28:58 -07001101 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001104 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001105 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (err)
1107 goto out;
1108 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1109 stablep);
1110 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001111 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (err)
1113 goto out;
1114
1115 if (cnt)
1116 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1117 cnt, stablep);
1118 nfsd_close(file);
1119 }
1120out:
1121 return err;
1122}
1123
1124#ifdef CONFIG_NFSD_V3
1125/*
1126 * Commit all pending writes to stable storage.
Trond Myklebustaa696a62010-01-29 16:44:25 -05001127 *
1128 * Note: we only guarantee that data that lies within the range specified
1129 * by the 'offset' and 'count' parameters will be synced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 *
1131 * Unfortunately we cannot lock the file to make sure we return full WCC
1132 * data to the client, as locking happens lower down in the filesystem.
1133 */
Al Viro6264d692006-10-19 23:28:58 -07001134__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1136 loff_t offset, unsigned long count)
1137{
1138 struct file *file;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001139 loff_t end = LLONG_MAX;
1140 __be32 err = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Trond Myklebustaa696a62010-01-29 16:44:25 -05001142 if (offset < 0)
1143 goto out;
1144 if (count != 0) {
1145 end = offset + (loff_t)count - 1;
1146 if (end < offset)
1147 goto out;
1148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Jeff Layton91885252010-03-19 08:06:28 -04001150 err = nfsd_open(rqstp, fhp, S_IFREG,
1151 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001152 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001153 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (EX_ISSYNC(fhp->fh_export)) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001155 int err2 = vfs_fsync_range(file, offset, end, 0);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001156
1157 if (err2 != -EINVAL)
1158 err = nfserrno(err2);
1159 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 err = nfserr_notsupp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162
1163 nfsd_close(file);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001164out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return err;
1166}
1167#endif /* CONFIG_NFSD_V3 */
1168
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001169static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001170nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1171 struct iattr *iap)
1172{
1173 /*
1174 * Mode has already been set earlier in create:
1175 */
1176 iap->ia_valid &= ~ATTR_MODE;
1177 /*
1178 * Setting uid/gid works only for root. Irix appears to
1179 * send along the gid on create when it tries to implement
1180 * setgid directories via NFS:
1181 */
David Howells5cc0a842008-11-14 10:38:58 +11001182 if (current_fsuid() != 0)
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001183 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1184 if (iap->ia_valid)
1185 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1186 return 0;
1187}
1188
wengang wang4ac35c22009-02-10 11:27:51 +08001189/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1190 * setting size to 0 may fail for some specific file systems by the permission
1191 * checking which requires WRITE permission but the mode is 000.
1192 * we ignore the resizing(to 0) on the just new created file, since the size is
1193 * 0 after file created.
1194 *
1195 * call this only after vfs_create() is called.
1196 * */
1197static void
1198nfsd_check_ignore_resizing(struct iattr *iap)
1199{
1200 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1201 iap->ia_valid &= ~ATTR_SIZE;
1202}
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204/*
1205 * Create a file (regular, directory, device, fifo); UNIX sockets
1206 * not yet implemented.
1207 * If the response fh has been verified, the parent directory should
1208 * already be locked. Note that the parent directory is left locked.
1209 *
1210 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1211 */
Al Viro6264d692006-10-19 23:28:58 -07001212__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1214 char *fname, int flen, struct iattr *iap,
1215 int type, dev_t rdev, struct svc_fh *resfhp)
1216{
1217 struct dentry *dentry, *dchild = NULL;
1218 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001219 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001220 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001221 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 err = nfserr_perm;
1224 if (!flen)
1225 goto out;
1226 err = nfserr_exist;
1227 if (isdotent(fname, flen))
1228 goto out;
1229
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001230 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (err)
1232 goto out;
1233
1234 dentry = fhp->fh_dentry;
1235 dirp = dentry->d_inode;
1236
1237 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001238 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 goto out;
1240 /*
1241 * Check whether the response file handle has been verified yet.
1242 * If it has, the parent directory should already be locked.
1243 */
1244 if (!resfhp->fh_dentry) {
1245 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001246 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001248 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (IS_ERR(dchild))
1250 goto out_nfserr;
1251 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1252 if (err)
1253 goto out;
1254 } else {
1255 /* called from nfsd_proc_create */
1256 dchild = dget(resfhp->fh_dentry);
1257 if (!fhp->fh_locked) {
1258 /* not actually possible */
1259 printk(KERN_ERR
1260 "nfsd_create: parent %s/%s not locked!\n",
1261 dentry->d_parent->d_name.name,
1262 dentry->d_name.name);
Al Virod75f2b92006-01-18 17:43:44 -08001263 err = nfserr_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 goto out;
1265 }
1266 }
1267 /*
1268 * Make sure the child dentry is still negative ...
1269 */
1270 err = nfserr_exist;
1271 if (dchild->d_inode) {
1272 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1273 dentry->d_name.name, dchild->d_name.name);
1274 goto out;
1275 }
1276
1277 if (!(iap->ia_valid & ATTR_MODE))
1278 iap->ia_mode = 0;
1279 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1280
Miklos Szeredi07cad1d2008-07-01 15:38:35 +02001281 err = nfserr_inval;
1282 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1283 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1284 type);
1285 goto out;
1286 }
1287
1288 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1289 if (host_err)
1290 goto out_nfserr;
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /*
1293 * Get the dir op function pointer.
1294 */
J. Bruce Fields088406b2006-11-08 17:44:59 -08001295 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 switch (type) {
1297 case S_IFREG:
Al Viro6264d692006-10-19 23:28:58 -07001298 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
wengang wang4ac35c22009-02-10 11:27:51 +08001299 if (!host_err)
1300 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
1302 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001303 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 break;
1305 case S_IFCHR:
1306 case S_IFBLK:
1307 case S_IFIFO:
1308 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001309 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 break;
Dave Hansen463c3192008-02-15 14:37:57 -08001311 }
1312 if (host_err < 0) {
1313 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1314 goto out_nfserr;
1315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Ben Myersf5019122010-02-17 14:05:11 -06001317 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Ben Myersf5019122010-02-17 14:05:11 -06001319 /*
1320 * nfsd_setattr already committed the child. Transactional filesystems
1321 * had a chance to commit changes for both parent and child
1322 * simultaneously making the following commit_metadata a noop.
1323 */
1324 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001325 if (err2)
1326 err = err2;
Dave Hansen463c3192008-02-15 14:37:57 -08001327 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /*
1329 * Update the file handle to get the new inode info.
1330 */
1331 if (!err)
1332 err = fh_update(resfhp);
1333out:
1334 if (dchild && !IS_ERR(dchild))
1335 dput(dchild);
1336 return err;
1337
1338out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001339 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 goto out;
1341}
1342
1343#ifdef CONFIG_NFSD_V3
1344/*
1345 * NFSv3 version of nfsd_create
1346 */
Al Viro6264d692006-10-19 23:28:58 -07001347__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
1349 char *fname, int flen, struct iattr *iap,
1350 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001351 int *truncp, int *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 struct dentry *dentry, *dchild = NULL;
1354 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001355 __be32 err;
1356 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 err = nfserr_perm;
1360 if (!flen)
1361 goto out;
1362 err = nfserr_exist;
1363 if (isdotent(fname, flen))
1364 goto out;
1365 if (!(iap->ia_valid & ATTR_MODE))
1366 iap->ia_mode = 0;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001367 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (err)
1369 goto out;
1370
1371 dentry = fhp->fh_dentry;
1372 dirp = dentry->d_inode;
1373
1374 /* Get all the sanity checks out of the way before
1375 * we lock the parent. */
1376 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001377 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 goto out;
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001379 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 /*
1382 * Compose the response file handle.
1383 */
1384 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001385 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 if (IS_ERR(dchild))
1387 goto out_nfserr;
1388
1389 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1390 if (err)
1391 goto out;
1392
1393 if (createmode == NFS3_CREATE_EXCLUSIVE) {
Peter Staubachc3978522007-01-26 00:57:00 -08001394 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001395 * the high bit set, so just clear the high bits. If this is
1396 * ever changed to use different attrs for storing the
1397 * verifier, then do_open_lookup() will also need to be fixed
1398 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
1400 v_mtime = verifier[0]&0x7fffffff;
1401 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
1403
Dave Hansen463c3192008-02-15 14:37:57 -08001404 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1405 if (host_err)
1406 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (dchild->d_inode) {
1408 err = 0;
1409
1410 switch (createmode) {
1411 case NFS3_CREATE_UNCHECKED:
1412 if (! S_ISREG(dchild->d_inode->i_mode))
1413 err = nfserr_exist;
1414 else if (truncp) {
1415 /* in nfsv4, we need to treat this case a little
1416 * differently. we don't want to truncate the
1417 * file now; this would be wrong if the OPEN
1418 * fails for some other reason. furthermore,
1419 * if the size is nonzero, we should ignore it
1420 * according to spec!
1421 */
1422 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1423 }
1424 else {
1425 iap->ia_valid &= ATTR_SIZE;
1426 goto set_attr;
1427 }
1428 break;
1429 case NFS3_CREATE_EXCLUSIVE:
1430 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1431 && dchild->d_inode->i_atime.tv_sec == v_atime
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 && dchild->d_inode->i_size == 0 )
1433 break;
1434 /* fallthru */
1435 case NFS3_CREATE_GUARDED:
1436 err = nfserr_exist;
1437 }
Dave Hansen463c3192008-02-15 14:37:57 -08001438 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto out;
1440 }
1441
Al Viro6264d692006-10-19 23:28:58 -07001442 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
Dave Hansen463c3192008-02-15 14:37:57 -08001443 if (host_err < 0) {
1444 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001446 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001447 if (created)
1448 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
wengang wang4ac35c22009-02-10 11:27:51 +08001450 nfsd_check_ignore_resizing(iap);
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (createmode == NFS3_CREATE_EXCLUSIVE) {
Peter Staubachc3978522007-01-26 00:57:00 -08001453 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001455 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 /* XXX someone who knows this better please fix it for nsec */
1457 iap->ia_mtime.tv_sec = v_mtime;
1458 iap->ia_atime.tv_sec = v_atime;
1459 iap->ia_mtime.tv_nsec = 0;
1460 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001464 err = nfsd_create_setattr(rqstp, resfhp, iap);
1465
1466 /*
1467 * nfsd_setattr already committed the child (and possibly also the parent).
1468 */
1469 if (!err)
1470 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001471
Dave Hansen463c3192008-02-15 14:37:57 -08001472 mnt_drop_write(fhp->fh_export->ex_path.mnt);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001473 /*
1474 * Update the filehandle to get the new inode info.
1475 */
1476 if (!err)
1477 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 out:
1480 fh_unlock(fhp);
1481 if (dchild && !IS_ERR(dchild))
1482 dput(dchild);
1483 return err;
1484
1485 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001486 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 goto out;
1488}
1489#endif /* CONFIG_NFSD_V3 */
1490
1491/*
1492 * Read a symlink. On entry, *lenp must contain the maximum path length that
1493 * fits into the buffer. On return, it contains the true length.
1494 * N.B. After this call fhp needs an fh_put
1495 */
Al Viro6264d692006-10-19 23:28:58 -07001496__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1498{
1499 struct dentry *dentry;
1500 struct inode *inode;
1501 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001502 __be32 err;
1503 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001505 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (err)
1507 goto out;
1508
1509 dentry = fhp->fh_dentry;
1510 inode = dentry->d_inode;
1511
1512 err = nfserr_inval;
Al Viroacfa4382008-12-04 10:06:33 -05001513 if (!inode->i_op->readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 goto out;
1515
Jan Blunck54775492008-02-14 19:38:39 -08001516 touch_atime(fhp->fh_export->ex_path.mnt, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 /* N.B. Why does this call need a get_fs()??
1518 * Remove the set_fs and watch the fireworks:-) --okir
1519 */
1520
1521 oldfs = get_fs(); set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -07001522 host_err = inode->i_op->readlink(dentry, buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 set_fs(oldfs);
1524
Al Viro6264d692006-10-19 23:28:58 -07001525 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001527 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 err = 0;
1529out:
1530 return err;
1531
1532out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001533 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 goto out;
1535}
1536
1537/*
1538 * Create a symlink and look up its inode
1539 * N.B. After this call _both_ fhp and resfhp need an fh_put
1540 */
Al Viro6264d692006-10-19 23:28:58 -07001541__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1543 char *fname, int flen,
1544 char *path, int plen,
1545 struct svc_fh *resfhp,
1546 struct iattr *iap)
1547{
1548 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001549 __be32 err, cerr;
1550 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 err = nfserr_noent;
1553 if (!flen || !plen)
1554 goto out;
1555 err = nfserr_exist;
1556 if (isdotent(fname, flen))
1557 goto out;
1558
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001559 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (err)
1561 goto out;
1562 fh_lock(fhp);
1563 dentry = fhp->fh_dentry;
1564 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001565 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (IS_ERR(dnew))
1567 goto out_nfserr;
1568
Dave Hansen75c3f292008-02-15 14:37:45 -08001569 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1570 if (host_err)
1571 goto out_nfserr;
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (unlikely(path[plen] != 0)) {
1574 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1575 if (path_alloced == NULL)
Al Viro6264d692006-10-19 23:28:58 -07001576 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 else {
1578 strncpy(path_alloced, path, plen);
1579 path_alloced[plen] = 0;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001580 host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 kfree(path_alloced);
1582 }
1583 } else
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001584 host_err = vfs_symlink(dentry->d_inode, dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001585 err = nfserrno(host_err);
Ben Myersf5019122010-02-17 14:05:11 -06001586 if (!err)
1587 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 fh_unlock(fhp);
1589
Dave Hansen75c3f292008-02-15 14:37:45 -08001590 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1593 dput(dnew);
1594 if (err==0) err = cerr;
1595out:
1596 return err;
1597
1598out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001599 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 goto out;
1601}
1602
1603/*
1604 * Create a hardlink
1605 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1606 */
Al Viro6264d692006-10-19 23:28:58 -07001607__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1609 char *name, int len, struct svc_fh *tfhp)
1610{
1611 struct dentry *ddir, *dnew, *dold;
J. Bruce Fields55b13352010-07-19 16:38:24 -04001612 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001613 __be32 err;
1614 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001616 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (err)
1618 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001619 err = fh_verify(rqstp, tfhp, -S_IFDIR, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (err)
1621 goto out;
1622
1623 err = nfserr_perm;
1624 if (!len)
1625 goto out;
1626 err = nfserr_exist;
1627 if (isdotent(name, len))
1628 goto out;
1629
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001630 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 ddir = ffhp->fh_dentry;
1632 dirp = ddir->d_inode;
1633
1634 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001635 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 if (IS_ERR(dnew))
1637 goto out_nfserr;
1638
1639 dold = tfhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Dave Hansen75c3f292008-02-15 14:37:45 -08001641 host_err = mnt_want_write(tfhp->fh_export->ex_path.mnt);
1642 if (host_err) {
1643 err = nfserrno(host_err);
1644 goto out_dput;
1645 }
Al Viro6264d692006-10-19 23:28:58 -07001646 host_err = vfs_link(dold, dirp, dnew);
1647 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001648 err = nfserrno(commit_metadata(ffhp));
1649 if (!err)
1650 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 } else {
Al Viro6264d692006-10-19 23:28:58 -07001652 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 err = nfserr_acces;
1654 else
Al Viro6264d692006-10-19 23:28:58 -07001655 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001657 mnt_drop_write(tfhp->fh_export->ex_path.mnt);
1658out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001660out_unlock:
1661 fh_unlock(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662out:
1663 return err;
1664
1665out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001666 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001667 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
1669
1670/*
1671 * Rename a file
1672 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1673 */
Al Viro6264d692006-10-19 23:28:58 -07001674__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1676 struct svc_fh *tfhp, char *tname, int tlen)
1677{
1678 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1679 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001680 __be32 err;
1681 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001683 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 if (err)
1685 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001686 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (err)
1688 goto out;
1689
1690 fdentry = ffhp->fh_dentry;
1691 fdir = fdentry->d_inode;
1692
1693 tdentry = tfhp->fh_dentry;
1694 tdir = tdentry->d_inode;
1695
1696 err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
NeilBrowna56f3932006-06-30 01:56:10 -07001697 if (ffhp->fh_export != tfhp->fh_export)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 goto out;
1699
1700 err = nfserr_perm;
1701 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1702 goto out;
1703
1704 /* cannot use fh_lock as we need deadlock protective ordering
1705 * so do it by hand */
1706 trap = lock_rename(tdentry, fdentry);
1707 ffhp->fh_locked = tfhp->fh_locked = 1;
1708 fill_pre_wcc(ffhp);
1709 fill_pre_wcc(tfhp);
1710
1711 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001712 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (IS_ERR(odentry))
1714 goto out_nfserr;
1715
Al Viro6264d692006-10-19 23:28:58 -07001716 host_err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (!odentry->d_inode)
1718 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001719 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (odentry == trap)
1721 goto out_dput_old;
1722
1723 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001724 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (IS_ERR(ndentry))
1726 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001727 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (ndentry == trap)
1729 goto out_dput_new;
1730
Dave Hansen9079b1e2008-02-15 14:37:49 -08001731 host_err = -EXDEV;
1732 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1733 goto out_dput_new;
1734 host_err = mnt_want_write(ffhp->fh_export->ex_path.mnt);
1735 if (host_err)
1736 goto out_dput_new;
1737
Al Viro6264d692006-10-19 23:28:58 -07001738 host_err = vfs_rename(fdir, odentry, tdir, ndentry);
Ben Myersf5019122010-02-17 14:05:11 -06001739 if (!host_err) {
1740 host_err = commit_metadata(tfhp);
Al Viro6264d692006-10-19 23:28:58 -07001741 if (!host_err)
Ben Myersf5019122010-02-17 14:05:11 -06001742 host_err = commit_metadata(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
1744
Dave Hansen9079b1e2008-02-15 14:37:49 -08001745 mnt_drop_write(ffhp->fh_export->ex_path.mnt);
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 out_dput_new:
1748 dput(ndentry);
1749 out_dput_old:
1750 dput(odentry);
1751 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001752 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754 /* we cannot reply on fh_unlock on the two filehandles,
1755 * as that would do the wrong thing if the two directories
1756 * were the same, so again we do it by hand
1757 */
1758 fill_post_wcc(ffhp);
1759 fill_post_wcc(tfhp);
1760 unlock_rename(tdentry, fdentry);
1761 ffhp->fh_locked = tfhp->fh_locked = 0;
1762
1763out:
1764 return err;
1765}
1766
1767/*
1768 * Unlink a file or directory
1769 * N.B. After this call fhp needs an fh_put
1770 */
Al Viro6264d692006-10-19 23:28:58 -07001771__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1773 char *fname, int flen)
1774{
1775 struct dentry *dentry, *rdentry;
1776 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001777 __be32 err;
1778 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 err = nfserr_acces;
1781 if (!flen || isdotent(fname, flen))
1782 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001783 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (err)
1785 goto out;
1786
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001787 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 dentry = fhp->fh_dentry;
1789 dirp = dentry->d_inode;
1790
1791 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001792 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (IS_ERR(rdentry))
1794 goto out_nfserr;
1795
1796 if (!rdentry->d_inode) {
1797 dput(rdentry);
1798 err = nfserr_noent;
1799 goto out;
1800 }
1801
1802 if (!type)
1803 type = rdentry->d_inode->i_mode & S_IFMT;
1804
Dave Hansen06227532008-02-15 14:37:34 -08001805 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1806 if (host_err)
1807 goto out_nfserr;
1808
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001809 if (type != S_IFDIR)
Al Viro6264d692006-10-19 23:28:58 -07001810 host_err = vfs_unlink(dirp, rdentry);
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001811 else
Al Viro6264d692006-10-19 23:28:58 -07001812 host_err = vfs_rmdir(dirp, rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 dput(rdentry);
1815
Ben Myersf5019122010-02-17 14:05:11 -06001816 if (!host_err)
1817 host_err = commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Dave Hansen06227532008-02-15 14:37:34 -08001819 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001821 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001822out:
1823 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825
1826/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001827 * We do this buffering because we must not call back into the file
1828 * system's ->lookup() method from the filldir callback. That may well
1829 * deadlock a number of file systems.
1830 *
1831 * This is based heavily on the implementation of same in XFS.
1832 */
1833struct buffered_dirent {
1834 u64 ino;
1835 loff_t offset;
1836 int namlen;
1837 unsigned int d_type;
1838 char name[];
1839};
1840
1841struct readdir_data {
1842 char *dirent;
1843 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001844 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001845};
1846
1847static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
1848 loff_t offset, u64 ino, unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001849{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001850 struct readdir_data *buf = __buf;
1851 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1852 unsigned int reclen;
1853
1854 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001855 if (buf->used + reclen > PAGE_SIZE) {
1856 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001857 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001858 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001859
1860 de->namlen = namlen;
1861 de->offset = offset;
1862 de->ino = ino;
1863 de->d_type = d_type;
1864 memcpy(de->name, name, namlen);
1865 buf->used += reclen;
1866
1867 return 0;
1868}
1869
David Woodhouse2f9092e2009-04-20 23:18:37 +01001870static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
1871 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001872{
1873 struct readdir_data buf;
1874 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001875 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001876 int size;
1877 loff_t offset;
David Woodhouse2628b762008-07-31 17:16:51 +01001878
David Woodhouse14f7dd62008-07-31 20:29:12 +01001879 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
1880 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001881 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001882
David Woodhouse14f7dd62008-07-31 20:29:12 +01001883 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001884
1885 while (1) {
David Woodhouse2f9092e2009-04-20 23:18:37 +01001886 struct inode *dir_inode = file->f_path.dentry->d_inode;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001887 unsigned int reclen;
1888
Doug Nazarb726e922008-11-05 06:16:28 -05001889 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001890 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001891 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001892
1893 host_err = vfs_readdir(file, nfsd_buffered_filldir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -04001894 if (buf.full)
1895 host_err = 0;
1896
1897 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001898 break;
1899
1900 size = buf.used;
1901
1902 if (!size)
1903 break;
1904
David Woodhouse2f9092e2009-04-20 23:18:37 +01001905 /*
1906 * Various filldir functions may end up calling back into
1907 * lookup_one_len() and the file system's ->lookup() method.
1908 * These expect i_mutex to be held, as it would within readdir.
1909 */
1910 host_err = mutex_lock_killable(&dir_inode->i_mutex);
1911 if (host_err)
1912 break;
1913
David Woodhouse14f7dd62008-07-31 20:29:12 +01001914 de = (struct buffered_dirent *)buf.dirent;
1915 while (size > 0) {
1916 offset = de->offset;
1917
1918 if (func(cdp, de->name, de->namlen, de->offset,
1919 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01001920 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001921
1922 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001923 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001924
1925 reclen = ALIGN(sizeof(*de) + de->namlen,
1926 sizeof(u64));
1927 size -= reclen;
1928 de = (struct buffered_dirent *)((char *)de + reclen);
1929 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01001930 mutex_unlock(&dir_inode->i_mutex);
1931 if (size > 0) /* We bailed out early */
1932 break;
1933
David Woodhousec002a6c2008-08-17 17:21:18 +01001934 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001935 }
1936
David Woodhouse14f7dd62008-07-31 20:29:12 +01001937 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01001938
1939 if (host_err)
1940 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001941
1942 *offsetp = offset;
1943 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01001944}
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946/*
1947 * Read entries from a directory.
1948 * The NFSv3/4 verifier we ignore for now.
1949 */
Al Viro6264d692006-10-19 23:28:58 -07001950__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
NeilBrowna0ad13e2007-01-26 00:57:10 -08001952 struct readdir_cd *cdp, filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Al Viro6264d692006-10-19 23:28:58 -07001954 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 struct file *file;
1956 loff_t offset = *offsetp;
1957
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001958 err = nfsd_open(rqstp, fhp, S_IFDIR, NFSD_MAY_READ, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 if (err)
1960 goto out;
1961
1962 offset = vfs_llseek(file, offset, 0);
1963 if (offset < 0) {
1964 err = nfserrno((int)offset);
1965 goto out_close;
1966 }
1967
David Woodhouse14f7dd62008-07-31 20:29:12 +01001968 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 if (err == nfserr_eof || err == nfserr_toosmall)
1971 err = nfs_ok; /* can still be found in ->err */
1972out_close:
1973 nfsd_close(file);
1974out:
1975 return err;
1976}
1977
1978/*
1979 * Get file system stats
1980 * N.B. After this call fhp needs an fh_put
1981 */
Al Viro6264d692006-10-19 23:28:58 -07001982__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04001983nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001985 __be32 err;
1986
1987 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
Takashi Iwaif6360ef2010-08-13 15:53:49 +02001988 if (!err) {
1989 struct path path = {
1990 .mnt = fhp->fh_export->ex_path.mnt,
1991 .dentry = fhp->fh_dentry,
1992 };
1993 if (vfs_statfs(&path, stat))
1994 err = nfserr_io;
1995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return err;
1997}
1998
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001999static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002000{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002001 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002002}
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004/*
2005 * Check for a user's access permissions to this inode.
2006 */
Al Viro6264d692006-10-19 23:28:58 -07002007__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07002008nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2009 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
2011 struct inode *inode = dentry->d_inode;
2012 int err;
2013
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002014 if (acc == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return 0;
2016#if 0
2017 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2018 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002019 (acc & NFSD_MAY_READ)? " read" : "",
2020 (acc & NFSD_MAY_WRITE)? " write" : "",
2021 (acc & NFSD_MAY_EXEC)? " exec" : "",
2022 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2023 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2024 (acc & NFSD_MAY_LOCK)? " lock" : "",
2025 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 inode->i_mode,
2027 IS_IMMUTABLE(inode)? " immut" : "",
2028 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08002029 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11002031 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032#endif
2033
2034 /* Normally we reject any write/sattr etc access on a read-only file
2035 * system. But if it is IRIX doing check on write-access for a
2036 * device special file, we ignore rofs.
2037 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002038 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2039 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08002040 if (exp_rdonly(rqstp, exp) ||
2041 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002043 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return nfserr_perm;
2045 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002046 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 return nfserr_perm;
2048
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002049 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 /* If we cannot rely on authentication in NLM requests,
2051 * just allow locks, otherwise require read permission, or
2052 * ownership
2053 */
2054 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2055 return 0;
2056 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002057 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 }
2059 /*
2060 * The file owner always gets access permission for accesses that
2061 * would normally be checked at open time. This is to make
2062 * file access work even when the client has done a fchmod(fd, 0).
2063 *
2064 * However, `cp foo bar' should fail nevertheless when bar is
2065 * readonly. A sensible way to do this might be to reject all
2066 * attempts to truncate a read-only file, because a creat() call
2067 * always implies file truncation.
2068 * ... but this isn't really fair. A process may reasonably call
2069 * ftruncate on an open file descriptor on a file with perm 000.
2070 * We must trust the client to do permission checking - using "ACCESS"
2071 * with NFSv3.
2072 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002073 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
David Howells5cc0a842008-11-14 10:38:58 +11002074 inode->i_uid == current_fsuid())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return 0;
2076
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002077 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04002078 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 /* Allow read access to binaries even when mode 111 */
2081 if (err == -EACCES && S_ISREG(inode->i_mode) &&
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002082 acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE))
Al Virof419a2e2008-07-22 00:07:17 -04002083 err = inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 return err? nfserrno(err) : 0;
2086}
2087
2088void
2089nfsd_racache_shutdown(void)
2090{
Jeff Layton54a66e52008-08-13 22:03:27 -04002091 struct raparms *raparm, *last_raparm;
2092 unsigned int i;
2093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04002095
2096 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2097 raparm = raparm_hash[i].pb_head;
2098 while(raparm) {
2099 last_raparm = raparm;
2100 raparm = raparm->p_next;
2101 kfree(last_raparm);
2102 }
2103 raparm_hash[i].pb_head = NULL;
2104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
2106/*
2107 * Initialize readahead param cache
2108 */
2109int
2110nfsd_racache_init(int cache_size)
2111{
2112 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002113 int j = 0;
2114 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002115 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Greg Banksfce14562006-10-04 02:15:49 -07002117
Jeff Layton54a66e52008-08-13 22:03:27 -04002118 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002120 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
2121 if (nperbucket < 2)
2122 nperbucket = 2;
2123 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002124
2125 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002126
2127 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002128 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002129
2130 raparm = &raparm_hash[i].pb_head;
2131 for (j = 0; j < nperbucket; j++) {
2132 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2133 if (!*raparm)
2134 goto out_nomem;
2135 raparm = &(*raparm)->p_next;
2136 }
2137 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002138 }
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 nfsdstats.ra_size = cache_size;
2141 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002142
2143out_nomem:
2144 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2145 nfsd_racache_shutdown();
2146 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002148
2149#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
2150struct posix_acl *
2151nfsd_get_posix_acl(struct svc_fh *fhp, int type)
2152{
2153 struct inode *inode = fhp->fh_dentry->d_inode;
2154 char *name;
2155 void *value = NULL;
2156 ssize_t size;
2157 struct posix_acl *acl;
2158
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002159 if (!IS_POSIXACL(inode))
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002160 return ERR_PTR(-EOPNOTSUPP);
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002161
2162 switch (type) {
2163 case ACL_TYPE_ACCESS:
2164 name = POSIX_ACL_XATTR_ACCESS;
2165 break;
2166 case ACL_TYPE_DEFAULT:
2167 name = POSIX_ACL_XATTR_DEFAULT;
2168 break;
2169 default:
2170 return ERR_PTR(-EOPNOTSUPP);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002171 }
2172
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002173 size = nfsd_getxattr(fhp->fh_dentry, name, &value);
2174 if (size < 0)
2175 return ERR_PTR(size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002176
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002177 acl = posix_acl_from_xattr(value, size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002178 kfree(value);
2179 return acl;
2180}
2181
2182int
2183nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
2184{
2185 struct inode *inode = fhp->fh_dentry->d_inode;
2186 char *name;
2187 void *value = NULL;
2188 size_t size;
2189 int error;
2190
Al Viroacfa4382008-12-04 10:06:33 -05002191 if (!IS_POSIXACL(inode) ||
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002192 !inode->i_op->setxattr || !inode->i_op->removexattr)
2193 return -EOPNOTSUPP;
2194 switch(type) {
2195 case ACL_TYPE_ACCESS:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002196 name = POSIX_ACL_XATTR_ACCESS;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002197 break;
2198 case ACL_TYPE_DEFAULT:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002199 name = POSIX_ACL_XATTR_DEFAULT;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002200 break;
2201 default:
2202 return -EOPNOTSUPP;
2203 }
2204
2205 if (acl && acl->a_count) {
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002206 size = posix_acl_xattr_size(acl->a_count);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002207 value = kmalloc(size, GFP_KERNEL);
2208 if (!value)
2209 return -ENOMEM;
Florin Malita9ccfc292006-05-20 14:59:58 -07002210 error = posix_acl_to_xattr(acl, value, size);
2211 if (error < 0)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002212 goto getout;
Florin Malita9ccfc292006-05-20 14:59:58 -07002213 size = error;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002214 } else
2215 size = 0;
2216
Dave Hansen18f335a2008-02-15 14:37:38 -08002217 error = mnt_want_write(fhp->fh_export->ex_path.mnt);
2218 if (error)
2219 goto getout;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002220 if (size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002221 error = vfs_setxattr(fhp->fh_dentry, name, value, size, 0);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002222 else {
2223 if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
2224 error = 0;
2225 else {
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002226 error = vfs_removexattr(fhp->fh_dentry, name);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002227 if (error == -ENODATA)
2228 error = 0;
2229 }
2230 }
Dave Hansen18f335a2008-02-15 14:37:38 -08002231 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002232
2233getout:
2234 kfree(value);
2235 return error;
2236}
2237#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */