blob: eaf2f0dca12a84ec2574a71fef46bbe20c0de992 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#define MSNFS /* HACK HACK */
2/*
3 * linux/fs/nfsd/vfs.c
4 *
5 * File operations used by nfsd. Some of these have been ripped from
6 * other parts of the kernel because they weren't exported, others
7 * are partial duplicates with added or changed functionality.
8 *
9 * Note that several functions dget() the dentry upon which they want
10 * to act, most notably those that create directory entries. Response
11 * dentry's are dput()'d if necessary in the release callback.
12 * So if you notice code paths that apparently fail to dput() the
13 * dentry, don't worry--they have been taken care of.
14 *
15 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
16 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/fs.h>
20#include <linux/file.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020021#include <linux/splice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/quotaops.h>
Robert Love0eeca282005-07-12 17:06:03 -040026#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/xattr.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020029#include <linux/jhash.h>
30#include <linux/ima.h>
31#include <asm/uaccess.h>
32
33#ifdef CONFIG_NFSD_V3
34#include "xdr3.h"
35#endif /* CONFIG_NFSD_V3 */
36
Christoph Hellwig5be196e2006-01-09 20:51:55 -080037#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/nfs4_acl.h>
39#include <linux/nfsd_idmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#endif /* CONFIG_NFSD_V4 */
41
Boaz Harrosh9a74af22009-12-03 20:30:56 +020042#include "nfsd.h"
43#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define NFSDDBG_FACILITY NFSDDBG_FILEOP
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * This is a cache of readahead params that help us choose the proper
50 * readahead strategy. Initially, we set all readahead parameters to 0
51 * and let the VFS handle things.
52 * If you increase the number of cached files very much, you'll need to
53 * add a hash table here.
54 */
55struct raparms {
56 struct raparms *p_next;
57 unsigned int p_count;
58 ino_t p_ino;
59 dev_t p_dev;
60 int p_set;
61 struct file_ra_state p_ra;
Greg Banksfce14562006-10-04 02:15:49 -070062 unsigned int p_hindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Greg Banksfce14562006-10-04 02:15:49 -070065struct raparm_hbucket {
66 struct raparms *pb_head;
67 spinlock_t pb_lock;
68} ____cacheline_aligned_in_smp;
69
Greg Banksfce14562006-10-04 02:15:49 -070070#define RAPARM_HASH_BITS 4
71#define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
72#define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
73static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Steve Dickson3c394dd2009-09-09 15:02:40 -040075static inline int
76nfsd_v4client(struct svc_rqst *rq)
77{
78 return rq->rq_prog == NFS_PROGRAM && rq->rq_vers == 4;
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
82 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
83 * a mount point.
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -080084 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * or nfs_ok having possibly changed *dpp and *expp
86 */
87int
88nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
89 struct svc_export **expp)
90{
91 struct svc_export *exp = *expp, *exp2 = NULL;
92 struct dentry *dentry = *dpp;
Al Viro91c9fa82009-04-18 02:42:05 -040093 struct path path = {.mnt = mntget(exp->ex_path.mnt),
94 .dentry = dget(dentry)};
Al Viro6264d692006-10-19 23:28:58 -070095 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Al Viro9393bd02009-04-18 13:58:15 -040097 while (d_mountpoint(path.dentry) && follow_down(&path))
Al Viro91c9fa82009-04-18 02:42:05 -040098 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Al Viro91c9fa82009-04-18 02:42:05 -0400100 exp2 = rqst_exp_get_by_name(rqstp, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (IS_ERR(exp2)) {
J. Bruce Fields3b6cee7bc2009-10-25 21:18:19 -0400102 err = PTR_ERR(exp2);
103 /*
104 * We normally allow NFS clients to continue
105 * "underneath" a mountpoint that is not exported.
106 * The exception is V4ROOT, where no traversal is ever
107 * allowed without an explicit export of the new
108 * directory.
109 */
110 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
111 err = 0;
Al Viro91c9fa82009-04-18 02:42:05 -0400112 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 goto out;
114 }
Steve Dickson3c394dd2009-09-09 15:02:40 -0400115 if (nfsd_v4client(rqstp) ||
116 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* successfully crossed mount point */
Al Viro1644ccc2009-04-18 02:32:31 -0400118 /*
Al Viro91c9fa82009-04-18 02:42:05 -0400119 * This is subtle: path.dentry is *not* on path.mnt
120 * at this point. The only reason we are safe is that
121 * original mnt is pinned down by exp, so we should
122 * put path *before* putting exp
Al Viro1644ccc2009-04-18 02:32:31 -0400123 */
Al Viro91c9fa82009-04-18 02:42:05 -0400124 *dpp = path.dentry;
125 path.dentry = dentry;
Al Viro1644ccc2009-04-18 02:32:31 -0400126 *expp = exp2;
Al Viro91c9fa82009-04-18 02:42:05 -0400127 exp2 = exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
Al Viro91c9fa82009-04-18 02:42:05 -0400129 path_put(&path);
130 exp_put(exp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131out:
132 return err;
133}
134
J. Bruce Fields289ede42009-09-26 20:32:24 -0400135static void follow_to_parent(struct path *path)
136{
137 struct dentry *dp;
138
139 while (path->dentry == path->mnt->mnt_root && follow_up(path))
140 ;
141 dp = dget_parent(path->dentry);
142 dput(path->dentry);
143 path->dentry = dp;
144}
145
146static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
147{
148 struct svc_export *exp2;
149 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
150 .dentry = dget(dparent)};
151
152 follow_to_parent(&path);
153
154 exp2 = rqst_exp_parent(rqstp, &path);
155 if (PTR_ERR(exp2) == -ENOENT) {
156 *dentryp = dget(dparent);
157 } else if (IS_ERR(exp2)) {
158 path_put(&path);
159 return PTR_ERR(exp2);
160 } else {
161 *dentryp = dget(path.dentry);
162 exp_put(*exp);
163 *exp = exp2;
164 }
165 path_put(&path);
166 return 0;
167}
168
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400169/*
170 * For nfsd purposes, we treat V4ROOT exports as though there was an
171 * export at *every* directory.
172 */
173static int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
174{
175 if (d_mountpoint(dentry))
176 return 1;
177 if (!(exp->ex_flags & NFSEXP_V4ROOT))
178 return 0;
179 return dentry->d_inode != NULL;
180}
181
Al Viro6264d692006-10-19 23:28:58 -0700182__be32
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700183nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400184 const char *name, unsigned int len,
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700185 struct svc_export **exp_ret, struct dentry **dentry_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct svc_export *exp;
188 struct dentry *dparent;
189 struct dentry *dentry;
Al Viro6264d692006-10-19 23:28:58 -0700190 __be32 err;
191 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
194
195 /* Obtain dentry and export. */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200196 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (err)
198 return err;
199
200 dparent = fhp->fh_dentry;
201 exp = fhp->fh_export;
202 exp_get(exp);
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 /* Lookup the name, but don't follow links */
205 if (isdotent(name, len)) {
206 if (len==1)
207 dentry = dget(dparent);
Jan Blunck54775492008-02-14 19:38:39 -0800208 else if (dparent != exp->ex_path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 dentry = dget_parent(dparent);
J. Bruce Fieldsfed83812009-09-26 16:53:01 -0400210 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 dentry = dget(dparent); /* .. == . just like at / */
212 else {
213 /* checking mountpoint crossing is very different when stepping up */
J. Bruce Fields289ede42009-09-26 20:32:24 -0400214 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
215 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218 } else {
219 fh_lock(fhp);
220 dentry = lookup_one_len(name, dparent, len);
Al Viro6264d692006-10-19 23:28:58 -0700221 host_err = PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (IS_ERR(dentry))
223 goto out_nfserr;
224 /*
225 * check if we have crossed a mount point ...
226 */
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400227 if (nfsd_mountpoint(dentry, exp)) {
Al Viro6264d692006-10-19 23:28:58 -0700228 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 dput(dentry);
230 goto out_nfserr;
231 }
232 }
233 }
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700234 *dentry_ret = dentry;
235 *exp_ret = exp;
236 return 0;
237
238out_nfserr:
239 exp_put(exp);
240 return nfserrno(host_err);
241}
242
243/*
244 * Look up one component of a pathname.
245 * N.B. After this call _both_ fhp and resfh need an fh_put
246 *
247 * If the lookup would cross a mountpoint, and the mounted filesystem
248 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
249 * accepted as it stands and the mounted directory is
250 * returned. Otherwise the covered directory is returned.
251 * NOTE: this mountpoint crossing is not supported properly by all
252 * clients and is explicitly disallowed for NFSv3
253 * NeilBrown <neilb@cse.unsw.edu.au>
254 */
255__be32
256nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400257 unsigned int len, struct svc_fh *resfh)
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700258{
259 struct svc_export *exp;
260 struct dentry *dentry;
261 __be32 err;
262
263 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
264 if (err)
265 return err;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700266 err = check_nfsd_access(exp, rqstp);
267 if (err)
268 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /*
270 * Note: we compose the file handle now, but as the
271 * dentry may be negative, it may need to be updated.
272 */
273 err = fh_compose(resfh, exp, dentry, fhp);
274 if (!err && !dentry->d_inode)
275 err = nfserr_noent;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700276out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 exp_put(exp);
279 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/*
284 * Set various file attributes.
285 * N.B. After this call fhp needs an fh_put
286 */
Al Viro6264d692006-10-19 23:28:58 -0700287__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
289 int check_guard, time_t guardtime)
290{
291 struct dentry *dentry;
292 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200293 int accmode = NFSD_MAY_SATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 int ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700295 __be32 err;
296 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 int size_change = 0;
298
299 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200300 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (iap->ia_valid & ATTR_SIZE)
302 ftype = S_IFREG;
303
304 /* Get inode */
305 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800306 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 goto out;
308
309 dentry = fhp->fh_dentry;
310 inode = dentry->d_inode;
311
NeilBrown15b7a1b2005-11-07 01:00:23 -0800312 /* Ignore any mode updates on symlinks */
313 if (S_ISLNK(inode->i_mode))
314 iap->ia_valid &= ~ATTR_MODE;
315
316 if (!iap->ia_valid)
317 goto out;
318
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000319 /*
320 * NFSv2 does not differentiate between "set-[ac]time-to-now"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 * which only requires access, and "set-[ac]time-to-X" which
322 * requires ownership.
323 * So if it looks like it might be "set both to the same time which
324 * is close to now", and if inode_change_ok fails, then we
325 * convert to "set to now" instead of "set to explicit time"
326 *
327 * We only call inode_change_ok as the last test as technically
328 * it is not an interface that we should be using. It is only
329 * valid if the filesystem does not define it's own i_op->setattr.
330 */
331#define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
332#define MAX_TOUCH_TIME_ERROR (30*60)
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000333 if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
334 iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
335 /*
336 * Looks probable.
337 *
338 * Now just make sure time is in the right ballpark.
339 * Solaris, at least, doesn't seem to care what the time
340 * request is. We require it be within 30 minutes of now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 */
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000342 time_t delta = iap->ia_atime.tv_sec - get_seconds();
343 if (delta < 0)
344 delta = -delta;
345 if (delta < MAX_TOUCH_TIME_ERROR &&
346 inode_change_ok(inode, iap) != 0) {
347 /*
348 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
349 * This will cause notify_change to set these times
350 * to "now"
351 */
352 iap->ia_valid &= ~BOTH_TIME_SET;
353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000356 /*
357 * The size case is special.
358 * It changes the file as well as the attributes.
359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (iap->ia_valid & ATTR_SIZE) {
361 if (iap->ia_size < inode->i_size) {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200362 err = nfsd_permission(rqstp, fhp->fh_export, dentry,
363 NFSD_MAY_TRUNC|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (err)
365 goto out;
366 }
367
368 /*
369 * If we are changing the size of the file, then
370 * we need to break all leases.
371 */
Al Viro6264d692006-10-19 23:28:58 -0700372 host_err = break_lease(inode, FMODE_WRITE | O_NONBLOCK);
373 if (host_err == -EWOULDBLOCK)
374 host_err = -ETIMEDOUT;
375 if (host_err) /* ENOMEM or EWOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 goto out_nfserr;
377
Al Viro6264d692006-10-19 23:28:58 -0700378 host_err = get_write_access(inode);
379 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 goto out_nfserr;
381
382 size_change = 1;
Al Viro6264d692006-10-19 23:28:58 -0700383 host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
384 if (host_err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 put_write_access(inode);
386 goto out_nfserr;
387 }
Jan Kara90c0af02009-02-09 22:22:21 +0100388 vfs_dq_init(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
Jeff Laytonca456252008-04-16 16:28:47 -0400391 /* sanitize the mode change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (iap->ia_valid & ATTR_MODE) {
393 iap->ia_mode &= S_IALLUGO;
Jeff Laytondee32092008-04-16 16:28:46 -0400394 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
Jeff Laytonca456252008-04-16 16:28:47 -0400395 }
396
397 /* Revoke setuid/setgid on chown */
Sachin S. Prabhu0953e622009-02-23 16:22:03 +0000398 if (!S_ISDIR(inode->i_mode) &&
399 (((iap->ia_valid & ATTR_UID) && iap->ia_uid != inode->i_uid) ||
400 ((iap->ia_valid & ATTR_GID) && iap->ia_gid != inode->i_gid))) {
Jeff Laytonca456252008-04-16 16:28:47 -0400401 iap->ia_valid |= ATTR_KILL_PRIV;
402 if (iap->ia_valid & ATTR_MODE) {
403 /* we're setting mode too, just clear the s*id bits */
Jeff Layton8a0ce7d2007-10-18 03:05:19 -0700404 iap->ia_mode &= ~S_ISUID;
Jeff Laytonca456252008-04-16 16:28:47 -0400405 if (iap->ia_mode & S_IXGRP)
406 iap->ia_mode &= ~S_ISGID;
407 } else {
408 /* set ATTR_KILL_* bits and let VFS handle it */
409 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
Jeff Layton8a0ce7d2007-10-18 03:05:19 -0700410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* Change the attributes. */
414
415 iap->ia_valid |= ATTR_CTIME;
416
417 err = nfserr_notsync;
418 if (!check_guard || guardtime == inode->i_ctime.tv_sec) {
419 fh_lock(fhp);
Al Viro6264d692006-10-19 23:28:58 -0700420 host_err = notify_change(dentry, iap);
421 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 fh_unlock(fhp);
423 }
424 if (size_change)
425 put_write_access(inode);
426 if (!err)
427 if (EX_ISSYNC(fhp->fh_export))
428 write_inode_now(inode, 1);
429out:
430 return err;
431
432out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700433 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 goto out;
435}
436
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800437#if defined(CONFIG_NFSD_V2_ACL) || \
438 defined(CONFIG_NFSD_V3_ACL) || \
439 defined(CONFIG_NFSD_V4)
440static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
441{
442 ssize_t buflen;
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530443 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800445 buflen = vfs_getxattr(dentry, key, NULL, 0);
446 if (buflen <= 0)
447 return buflen;
448
449 *buf = kmalloc(buflen, GFP_KERNEL);
450 if (!*buf)
451 return -ENOMEM;
452
Krishna Kumar6c6a4262008-10-22 14:48:36 +0530453 ret = vfs_getxattr(dentry, key, *buf, buflen);
454 if (ret < 0)
455 kfree(*buf);
456 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800457}
458#endif
459
460#if defined(CONFIG_NFSD_V4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461static int
462set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
463{
464 int len;
465 size_t buflen;
466 char *buf = NULL;
467 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 buflen = posix_acl_xattr_size(pacl->a_count);
470 buf = kmalloc(buflen, GFP_KERNEL);
471 error = -ENOMEM;
472 if (buf == NULL)
473 goto out;
474
475 len = posix_acl_to_xattr(pacl, buf, buflen);
476 if (len < 0) {
477 error = len;
478 goto out;
479 }
480
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800481 error = vfs_setxattr(dentry, key, buf, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482out:
483 kfree(buf);
484 return error;
485}
486
Al Viro6264d692006-10-19 23:28:58 -0700487__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
489 struct nfs4_acl *acl)
490{
Al Viro6264d692006-10-19 23:28:58 -0700491 __be32 error;
492 int host_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct dentry *dentry;
494 struct inode *inode;
495 struct posix_acl *pacl = NULL, *dpacl = NULL;
496 unsigned int flags = 0;
497
498 /* Get inode */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200499 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (error)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700501 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 dentry = fhp->fh_dentry;
504 inode = dentry->d_inode;
505 if (S_ISDIR(inode->i_mode))
506 flags = NFS4_ACL_DIR;
507
Al Viro6264d692006-10-19 23:28:58 -0700508 host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
509 if (host_error == -EINVAL) {
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700510 return nfserr_attrnotsupp;
Al Viro6264d692006-10-19 23:28:58 -0700511 } else if (host_error < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 goto out_nfserr;
513
Al Viro6264d692006-10-19 23:28:58 -0700514 host_error = set_nfsv4_acl_one(dentry, pacl, POSIX_ACL_XATTR_ACCESS);
515 if (host_error < 0)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700516 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700518 if (S_ISDIR(inode->i_mode))
Al Viro6264d692006-10-19 23:28:58 -0700519 host_error = set_nfsv4_acl_one(dentry, dpacl, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700521out_release:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 posix_acl_release(pacl);
523 posix_acl_release(dpacl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524out_nfserr:
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800525 if (host_error == -EOPNOTSUPP)
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700526 return nfserr_attrnotsupp;
J. Bruce Fieldsf34f9242007-02-16 01:28:34 -0800527 else
J. Bruce Fields4b2ca382007-07-17 04:04:37 -0700528 return nfserrno(host_error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531static struct posix_acl *
532_get_posix_acl(struct dentry *dentry, char *key)
533{
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800534 void *buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 struct posix_acl *pacl = NULL;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800536 int buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800538 buflen = nfsd_getxattr(dentry, key, &buf);
539 if (!buflen)
540 buflen = -ENODATA;
541 if (buflen <= 0)
542 return ERR_PTR(buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 pacl = posix_acl_from_xattr(buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 kfree(buf);
546 return pacl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
549int
550nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
551{
552 struct inode *inode = dentry->d_inode;
553 int error = 0;
554 struct posix_acl *pacl = NULL, *dpacl = NULL;
555 unsigned int flags = 0;
556
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700557 pacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_ACCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
559 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
560 if (IS_ERR(pacl)) {
561 error = PTR_ERR(pacl);
562 pacl = NULL;
563 goto out;
564 }
565
566 if (S_ISDIR(inode->i_mode)) {
Christoph Hellwig9a59f452005-06-23 00:10:19 -0700567 dpacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
569 dpacl = NULL;
570 else if (IS_ERR(dpacl)) {
571 error = PTR_ERR(dpacl);
572 dpacl = NULL;
573 goto out;
574 }
575 flags = NFS4_ACL_DIR;
576 }
577
578 *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
579 if (IS_ERR(*acl)) {
580 error = PTR_ERR(*acl);
581 *acl = NULL;
582 }
583 out:
584 posix_acl_release(pacl);
585 posix_acl_release(dpacl);
586 return error;
587}
588
589#endif /* defined(CONFIG_NFS_V4) */
590
591#ifdef CONFIG_NFSD_V3
592/*
593 * Check server access rights to a file system object
594 */
595struct accessmap {
596 u32 access;
597 int how;
598};
599static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200600 { NFS3_ACCESS_READ, NFSD_MAY_READ },
601 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
602 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
603 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 { 0, 0 }
606};
607
608static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200609 { NFS3_ACCESS_READ, NFSD_MAY_READ },
610 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
611 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
612 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
613 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 { 0, 0 }
616};
617
618static struct accessmap nfs3_anyaccess[] = {
619 /* Some clients - Solaris 2.6 at least, make an access call
620 * to the server to check for access for things like /dev/null
621 * (which really, the server doesn't care about). So
622 * We provide simple access checking for them, looking
623 * mainly at mode bits, and we make sure to ignore read-only
624 * filesystem checks
625 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200626 { NFS3_ACCESS_READ, NFSD_MAY_READ },
627 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
628 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
629 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 { 0, 0 }
632};
633
Al Viro6264d692006-10-19 23:28:58 -0700634__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
636{
637 struct accessmap *map;
638 struct svc_export *export;
639 struct dentry *dentry;
640 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700641 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200643 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (error)
645 goto out;
646
647 export = fhp->fh_export;
648 dentry = fhp->fh_dentry;
649
650 if (S_ISREG(dentry->d_inode->i_mode))
651 map = nfs3_regaccess;
652 else if (S_ISDIR(dentry->d_inode->i_mode))
653 map = nfs3_diraccess;
654 else
655 map = nfs3_anyaccess;
656
657
658 query = *access;
659 for (; map->access; map++) {
660 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700661 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 sresult |= map->access;
664
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700665 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 switch (err2) {
667 case nfs_ok:
668 result |= map->access;
669 break;
670
671 /* the following error codes just mean the access was not allowed,
672 * rather than an error occurred */
673 case nfserr_rofs:
674 case nfserr_acces:
675 case nfserr_perm:
676 /* simply don't "or" in the access bit. */
677 break;
678 default:
679 error = err2;
680 goto out;
681 }
682 }
683 }
684 *access = result;
685 if (supported)
686 *supported = sresult;
687
688 out:
689 return error;
690}
691#endif /* CONFIG_NFSD_V3 */
692
693
694
695/*
696 * Open an existing file or directory.
697 * The access argument indicates the type of open (read/write/lock)
698 * N.B. After this call fhp needs an fh_put
699 */
Al Viro6264d692006-10-19 23:28:58 -0700700__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
702 int access, struct file **filp)
703{
704 struct dentry *dentry;
705 struct inode *inode;
Al Viro6264d692006-10-19 23:28:58 -0700706 int flags = O_RDONLY|O_LARGEFILE;
707 __be32 err;
708 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
David Howellse0e81732009-09-02 09:13:40 +0100710 validate_process_creds();
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /*
713 * If we get here, then the client has already done an "open",
714 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
715 * in case a chmod has now revoked permission.
716 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200717 err = fh_verify(rqstp, fhp, type, access | NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (err)
719 goto out;
720
721 dentry = fhp->fh_dentry;
722 inode = dentry->d_inode;
723
724 /* Disallow write access to files with the append-only bit set
725 * or any access when mandatory locking enabled
726 */
727 err = nfserr_perm;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200728 if (IS_APPEND(inode) && (access & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400730 /*
731 * We must ignore files (but only files) which might have mandatory
732 * locks on them because there is no way to know if the accesser has
733 * the lock.
734 */
735 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 goto out;
737
738 if (!inode->i_fop)
739 goto out;
740
741 /*
742 * Check to see if there are any leases on this file.
743 * This may block while leases are broken.
744 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200745 host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? FMODE_WRITE : 0));
Al Viro6264d692006-10-19 23:28:58 -0700746 if (host_err == -EWOULDBLOCK)
747 host_err = -ETIMEDOUT;
748 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 goto out_nfserr;
750
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200751 if (access & NFSD_MAY_WRITE) {
752 if (access & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700753 flags = O_RDWR|O_LARGEFILE;
754 else
755 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Jan Kara90c0af02009-02-09 22:22:21 +0100757 vfs_dq_init(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Jan Blunck54775492008-02-14 19:38:39 -0800759 *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt),
David Howells033a6662009-07-02 14:35:32 +0100760 flags, current_cred());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (IS_ERR(*filp))
Al Viro6264d692006-10-19 23:28:58 -0700762 host_err = PTR_ERR(*filp);
Mimi Zohar14dba532009-05-27 09:31:52 -0400763 else
764 ima_counts_get(*filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700766 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767out:
David Howellse0e81732009-09-02 09:13:40 +0100768 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return err;
770}
771
772/*
773 * Close a file.
774 */
775void
776nfsd_close(struct file *filp)
777{
778 fput(filp);
779}
780
J. Bruce Fields9a8d2482009-01-06 13:37:03 -0500781/*
782 * Sync a file
783 * As this calls fsync (not fdatasync) there is no need for a write_inode
784 * after it.
785 */
786static inline int nfsd_dosync(struct file *filp, struct dentry *dp,
787 const struct file_operations *fop)
788{
789 struct inode *inode = dp->d_inode;
790 int (*fsync) (struct file *, struct dentry *, int);
791 int err;
792
793 err = filemap_fdatawrite(inode->i_mapping);
794 if (err == 0 && fop && (fsync = fop->fsync))
795 err = fsync(filp, dp, 0);
796 if (err == 0)
797 err = filemap_fdatawait(inode->i_mapping);
798
799 return err;
800}
801
David Shawa334de22006-01-06 00:19:58 -0800802static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803nfsd_sync(struct file *filp)
804{
J. Bruce Fields9a8d2482009-01-06 13:37:03 -0500805 int err;
806 struct inode *inode = filp->f_path.dentry->d_inode;
807 dprintk("nfsd: sync file %s\n", filp->f_path.dentry->d_name.name);
808 mutex_lock(&inode->i_mutex);
809 err=nfsd_dosync(filp, filp->f_path.dentry, filp->f_op);
810 mutex_unlock(&inode->i_mutex);
811
812 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -0800815int
J. Bruce Fields9a8d2482009-01-06 13:37:03 -0500816nfsd_sync_dir(struct dentry *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
J. Bruce Fields9a8d2482009-01-06 13:37:03 -0500818 return nfsd_dosync(NULL, dp, dp->d_inode->i_fop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
821/*
822 * Obtain the readahead parameters for the file
823 * specified by (dev, ino).
824 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826static inline struct raparms *
827nfsd_get_raparms(dev_t dev, ino_t ino)
828{
829 struct raparms *ra, **rap, **frap = NULL;
830 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700831 unsigned int hash;
832 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Greg Banksfce14562006-10-04 02:15:49 -0700834 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
835 rab = &raparm_hash[hash];
836
837 spin_lock(&rab->pb_lock);
838 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (ra->p_ino == ino && ra->p_dev == dev)
840 goto found;
841 depth++;
842 if (ra->p_count == 0)
843 frap = rap;
844 }
845 depth = nfsdstats.ra_size*11/10;
846 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700847 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return NULL;
849 }
850 rap = frap;
851 ra = *frap;
852 ra->p_dev = dev;
853 ra->p_ino = ino;
854 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700855 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856found:
Greg Banksfce14562006-10-04 02:15:49 -0700857 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700859 ra->p_next = rab->pb_head;
860 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862 ra->p_count++;
863 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700864 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return ra;
866}
867
868/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200869 * Grab and keep cached pages associated with a file in the svc_rqst
870 * so that they can be passed to the network sendmsg/sendpage routines
871 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 */
873static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200874nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
875 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Jens Axboecf8208d2007-06-12 21:22:14 +0200877 struct svc_rqst *rqstp = sd->u.data;
NeilBrown44524352006-10-04 02:15:46 -0700878 struct page **pp = rqstp->rq_respages + rqstp->rq_resused;
Jens Axboecf8208d2007-06-12 21:22:14 +0200879 struct page *page = buf->page;
880 size_t size;
881 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Jens Axboecac36bb02007-06-14 13:10:48 +0200883 ret = buf->ops->confirm(pipe, buf);
Jens Axboecf8208d2007-06-12 21:22:14 +0200884 if (unlikely(ret))
885 return ret;
886
887 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 if (rqstp->rq_res.page_len == 0) {
890 get_page(page);
NeilBrown44524352006-10-04 02:15:46 -0700891 put_page(*pp);
892 *pp = page;
893 rqstp->rq_resused++;
Jens Axboecf8208d2007-06-12 21:22:14 +0200894 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700896 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 get_page(page);
NeilBrown250f3912007-01-26 00:56:59 -0800898 if (*pp)
899 put_page(*pp);
NeilBrown44524352006-10-04 02:15:46 -0700900 *pp = page;
901 rqstp->rq_resused++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700903 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return size;
907}
908
Jens Axboecf8208d2007-06-12 21:22:14 +0200909static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
910 struct splice_desc *sd)
911{
912 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
913}
914
Dave Hansena8754be2007-10-16 23:31:15 -0700915static inline int svc_msnfs(struct svc_fh *ffhp)
916{
917#ifdef MSNFS
918 return (ffhp->fh_export->ex_flags & NFSEXP_MSNFS);
919#else
920 return 0;
921#endif
922}
923
Al Viro6264d692006-10-19 23:28:58 -0700924static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
926 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
927{
928 struct inode *inode;
929 struct raparms *ra;
930 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700931 __be32 err;
932 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 err = nfserr_perm;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800935 inode = file->f_path.dentry->d_inode;
Dave Hansena8754be2007-10-16 23:31:15 -0700936
937 if (svc_msnfs(fhp) && !lock_may_read(inode, offset, *count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 /* Get readahead parameters */
941 ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
942
943 if (ra && ra->p_set)
944 file->f_ra = ra->p_ra;
945
Jens Axboecf8208d2007-06-12 21:22:14 +0200946 if (file->f_op->splice_read && rqstp->rq_splice_ok) {
947 struct splice_desc sd = {
948 .len = 0,
949 .total_len = *count,
950 .pos = offset,
951 .u.data = rqstp,
952 };
953
Jens Axboe4fbef202007-07-13 22:42:20 +0200954 rqstp->rq_resused = 1;
Jens Axboecf8208d2007-06-12 21:22:14 +0200955 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 } else {
957 oldfs = get_fs();
958 set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -0700959 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 set_fs(oldfs);
961 }
962
963 /* Write back readahead params */
964 if (ra) {
Greg Banksfce14562006-10-04 02:15:49 -0700965 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
966 spin_lock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 ra->p_ra = file->f_ra;
968 ra->p_set = 1;
969 ra->p_count--;
Greg Banksfce14562006-10-04 02:15:49 -0700970 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
972
Al Viro6264d692006-10-19 23:28:58 -0700973 if (host_err >= 0) {
974 nfsdstats.io_read += host_err;
975 *count = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 err = 0;
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800977 fsnotify_access(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 } else
Al Viro6264d692006-10-19 23:28:58 -0700979 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980out:
981 return err;
982}
983
Neil Brown9f708e42006-01-06 00:19:59 -0800984static void kill_suid(struct dentry *dentry)
985{
986 struct iattr ia;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700987 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
Neil Brown9f708e42006-01-06 00:19:59 -0800988
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800989 mutex_lock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -0800990 notify_change(dentry, &ia);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800991 mutex_unlock(&dentry->d_inode->i_mutex);
Neil Brown9f708e42006-01-06 00:19:59 -0800992}
993
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700994/*
995 * Gathered writes: If another process is currently writing to the file,
996 * there's a high chance this is another nfsd (triggered by a bulk write
997 * from a client's biod). Rather than syncing the file with each write
998 * request, we sleep for 10 msec.
999 *
1000 * I don't know if this roughly approximates C. Juszak's idea of
1001 * gathered writes, but it's a nice and simple solution (IMHO), and it
1002 * seems to work:-)
1003 *
1004 * Note: we do this only in the NFSv2 case, since v3 and higher have a
1005 * better tool (separate unstable writes and commits) for solving this
1006 * problem.
1007 */
1008static int wait_for_concurrent_writes(struct file *file)
1009{
1010 struct inode *inode = file->f_path.dentry->d_inode;
1011 static ino_t last_ino;
1012 static dev_t last_dev;
1013 int err = 0;
1014
1015 if (atomic_read(&inode->i_writecount) > 1
1016 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
1017 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
1018 msleep(10);
1019 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
1020 }
1021
1022 if (inode->i_state & I_DIRTY) {
1023 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
1024 err = nfsd_sync(file);
1025 }
1026 last_ino = inode->i_ino;
1027 last_dev = inode->i_sb->s_dev;
1028 return err;
1029}
1030
Al Viro6264d692006-10-19 23:28:58 -07001031static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1033 loff_t offset, struct kvec *vec, int vlen,
David Shaw31dec252009-03-05 20:16:14 -05001034 unsigned long *cnt, int *stablep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
1036 struct svc_export *exp;
1037 struct dentry *dentry;
1038 struct inode *inode;
1039 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001040 __be32 err = 0;
1041 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 int stable = *stablep;
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001043 int use_wgather;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
NeilBrown45bd3b32006-01-18 17:43:50 -08001045#ifdef MSNFS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 err = nfserr_perm;
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
David Shaw31dec252009-03-05 20:16:14 -05001049 (!lock_may_write(file->f_path.dentry->d_inode, offset, *cnt)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 goto out;
1051#endif
1052
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -08001053 dentry = file->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 inode = dentry->d_inode;
1055 exp = fhp->fh_export;
1056
1057 /*
1058 * Request sync writes if
1059 * - the sync export option has been set, or
1060 * - the client requested O_SYNC behavior (NFSv3 feature).
1061 * - The file system doesn't support fsync().
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001062 * When NFSv2 gathered writes have been configured for this volume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 * flushing the data to disk is handled separately below.
1064 */
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001065 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Harvey Harrison3ba15142008-02-20 12:49:02 -08001067 if (!file->f_op->fsync) {/* COMMIT3 cannot work */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 stable = 2;
1069 *stablep = 2; /* FILE_SYNC */
1070 }
1071
1072 if (!EX_ISSYNC(exp))
1073 stable = 0;
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001074 if (stable && !use_wgather) {
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07001075 spin_lock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 file->f_flags |= O_SYNC;
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07001077 spin_unlock(&file->f_lock);
1078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 /* Write the data. */
1081 oldfs = get_fs(); set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -07001082 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001084 if (host_err < 0)
1085 goto out_nfserr;
1086 *cnt = host_err;
1087 nfsdstats.io_write += host_err;
1088 fsnotify_modify(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 /* clear setuid/setgid flag after write */
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001091 if (inode->i_mode & (S_ISUID | S_ISGID))
Neil Brown9f708e42006-01-06 00:19:59 -08001092 kill_suid(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001094 if (stable && use_wgather)
J. Bruce Fieldsd911df72009-06-15 16:03:53 -07001095 host_err = wait_for_concurrent_writes(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001097out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001098 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001099 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001101 else
Al Viro6264d692006-10-19 23:28:58 -07001102 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103out:
1104 return err;
1105}
1106
1107/*
1108 * Read data from a file. count must contain the requested read count
1109 * on entry. On return, *count contains the number of bytes actually read.
1110 * N.B. After this call fhp needs an fh_put
1111 */
Al Viro6264d692006-10-19 23:28:58 -07001112__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1114 loff_t offset, struct kvec *vec, int vlen,
1115 unsigned long *count)
1116{
Al Viro6264d692006-10-19 23:28:58 -07001117 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001120 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001121 NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (err)
1123 goto out;
1124 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1125 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001126 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (err)
1128 goto out;
1129 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1130 nfsd_close(file);
1131 }
1132out:
1133 return err;
1134}
1135
1136/*
1137 * Write data to a file.
1138 * The stable flag requests synchronous writes.
1139 * N.B. After this call fhp needs an fh_put
1140 */
Al Viro6264d692006-10-19 23:28:58 -07001141__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
David Shaw31dec252009-03-05 20:16:14 -05001143 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 int *stablep)
1145{
Al Viro6264d692006-10-19 23:28:58 -07001146 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001149 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001150 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (err)
1152 goto out;
1153 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1154 stablep);
1155 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001156 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (err)
1158 goto out;
1159
1160 if (cnt)
1161 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1162 cnt, stablep);
1163 nfsd_close(file);
1164 }
1165out:
1166 return err;
1167}
1168
1169#ifdef CONFIG_NFSD_V3
1170/*
1171 * Commit all pending writes to stable storage.
1172 * Strictly speaking, we could sync just the indicated file region here,
1173 * but there's currently no way we can ask the VFS to do so.
1174 *
1175 * Unfortunately we cannot lock the file to make sure we return full WCC
1176 * data to the client, as locking happens lower down in the filesystem.
1177 */
Al Viro6264d692006-10-19 23:28:58 -07001178__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1180 loff_t offset, unsigned long count)
1181{
1182 struct file *file;
Al Viro6264d692006-10-19 23:28:58 -07001183 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 if ((u64)count > ~(u64)offset)
1186 return nfserr_inval;
1187
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001188 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
1189 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 return err;
1191 if (EX_ISSYNC(fhp->fh_export)) {
1192 if (file->f_op && file->f_op->fsync) {
NeilBrown45bd3b32006-01-18 17:43:50 -08001193 err = nfserrno(nfsd_sync(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 } else {
1195 err = nfserr_notsupp;
1196 }
1197 }
1198
1199 nfsd_close(file);
1200 return err;
1201}
1202#endif /* CONFIG_NFSD_V3 */
1203
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001204static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001205nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1206 struct iattr *iap)
1207{
1208 /*
1209 * Mode has already been set earlier in create:
1210 */
1211 iap->ia_valid &= ~ATTR_MODE;
1212 /*
1213 * Setting uid/gid works only for root. Irix appears to
1214 * send along the gid on create when it tries to implement
1215 * setgid directories via NFS:
1216 */
David Howells5cc0a842008-11-14 10:38:58 +11001217 if (current_fsuid() != 0)
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001218 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1219 if (iap->ia_valid)
1220 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1221 return 0;
1222}
1223
wengang wang4ac35c22009-02-10 11:27:51 +08001224/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1225 * setting size to 0 may fail for some specific file systems by the permission
1226 * checking which requires WRITE permission but the mode is 000.
1227 * we ignore the resizing(to 0) on the just new created file, since the size is
1228 * 0 after file created.
1229 *
1230 * call this only after vfs_create() is called.
1231 * */
1232static void
1233nfsd_check_ignore_resizing(struct iattr *iap)
1234{
1235 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1236 iap->ia_valid &= ~ATTR_SIZE;
1237}
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239/*
1240 * Create a file (regular, directory, device, fifo); UNIX sockets
1241 * not yet implemented.
1242 * If the response fh has been verified, the parent directory should
1243 * already be locked. Note that the parent directory is left locked.
1244 *
1245 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1246 */
Al Viro6264d692006-10-19 23:28:58 -07001247__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1249 char *fname, int flen, struct iattr *iap,
1250 int type, dev_t rdev, struct svc_fh *resfhp)
1251{
1252 struct dentry *dentry, *dchild = NULL;
1253 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001254 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001255 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001256 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 err = nfserr_perm;
1259 if (!flen)
1260 goto out;
1261 err = nfserr_exist;
1262 if (isdotent(fname, flen))
1263 goto out;
1264
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001265 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (err)
1267 goto out;
1268
1269 dentry = fhp->fh_dentry;
1270 dirp = dentry->d_inode;
1271
1272 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001273 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 goto out;
1275 /*
1276 * Check whether the response file handle has been verified yet.
1277 * If it has, the parent directory should already be locked.
1278 */
1279 if (!resfhp->fh_dentry) {
1280 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001281 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001283 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (IS_ERR(dchild))
1285 goto out_nfserr;
1286 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1287 if (err)
1288 goto out;
1289 } else {
1290 /* called from nfsd_proc_create */
1291 dchild = dget(resfhp->fh_dentry);
1292 if (!fhp->fh_locked) {
1293 /* not actually possible */
1294 printk(KERN_ERR
1295 "nfsd_create: parent %s/%s not locked!\n",
1296 dentry->d_parent->d_name.name,
1297 dentry->d_name.name);
Al Virod75f2b92006-01-18 17:43:44 -08001298 err = nfserr_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 goto out;
1300 }
1301 }
1302 /*
1303 * Make sure the child dentry is still negative ...
1304 */
1305 err = nfserr_exist;
1306 if (dchild->d_inode) {
1307 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1308 dentry->d_name.name, dchild->d_name.name);
1309 goto out;
1310 }
1311
1312 if (!(iap->ia_valid & ATTR_MODE))
1313 iap->ia_mode = 0;
1314 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1315
Miklos Szeredi07cad1d2008-07-01 15:38:35 +02001316 err = nfserr_inval;
1317 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1318 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1319 type);
1320 goto out;
1321 }
1322
1323 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1324 if (host_err)
1325 goto out_nfserr;
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /*
1328 * Get the dir op function pointer.
1329 */
J. Bruce Fields088406b2006-11-08 17:44:59 -08001330 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 switch (type) {
1332 case S_IFREG:
Al Viro6264d692006-10-19 23:28:58 -07001333 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
wengang wang4ac35c22009-02-10 11:27:51 +08001334 if (!host_err)
1335 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 break;
1337 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001338 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 break;
1340 case S_IFCHR:
1341 case S_IFBLK:
1342 case S_IFIFO:
1343 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001344 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 break;
Dave Hansen463c3192008-02-15 14:37:57 -08001346 }
1347 if (host_err < 0) {
1348 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1349 goto out_nfserr;
1350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 if (EX_ISSYNC(fhp->fh_export)) {
NeilBrown45bd3b32006-01-18 17:43:50 -08001353 err = nfserrno(nfsd_sync_dir(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 write_inode_now(dchild->d_inode, 1);
1355 }
1356
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001357 err2 = nfsd_create_setattr(rqstp, resfhp, iap);
1358 if (err2)
1359 err = err2;
Dave Hansen463c3192008-02-15 14:37:57 -08001360 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /*
1362 * Update the file handle to get the new inode info.
1363 */
1364 if (!err)
1365 err = fh_update(resfhp);
1366out:
1367 if (dchild && !IS_ERR(dchild))
1368 dput(dchild);
1369 return err;
1370
1371out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001372 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 goto out;
1374}
1375
1376#ifdef CONFIG_NFSD_V3
1377/*
1378 * NFSv3 version of nfsd_create
1379 */
Al Viro6264d692006-10-19 23:28:58 -07001380__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
1382 char *fname, int flen, struct iattr *iap,
1383 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001384 int *truncp, int *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
1386 struct dentry *dentry, *dchild = NULL;
1387 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001388 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001389 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001390 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 err = nfserr_perm;
1394 if (!flen)
1395 goto out;
1396 err = nfserr_exist;
1397 if (isdotent(fname, flen))
1398 goto out;
1399 if (!(iap->ia_valid & ATTR_MODE))
1400 iap->ia_mode = 0;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001401 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (err)
1403 goto out;
1404
1405 dentry = fhp->fh_dentry;
1406 dirp = dentry->d_inode;
1407
1408 /* Get all the sanity checks out of the way before
1409 * we lock the parent. */
1410 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001411 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 goto out;
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001413 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 /*
1416 * Compose the response file handle.
1417 */
1418 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001419 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (IS_ERR(dchild))
1421 goto out_nfserr;
1422
1423 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1424 if (err)
1425 goto out;
1426
1427 if (createmode == NFS3_CREATE_EXCLUSIVE) {
Peter Staubachc3978522007-01-26 00:57:00 -08001428 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001429 * the high bit set, so just clear the high bits. If this is
1430 * ever changed to use different attrs for storing the
1431 * verifier, then do_open_lookup() will also need to be fixed
1432 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 */
1434 v_mtime = verifier[0]&0x7fffffff;
1435 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437
Dave Hansen463c3192008-02-15 14:37:57 -08001438 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1439 if (host_err)
1440 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (dchild->d_inode) {
1442 err = 0;
1443
1444 switch (createmode) {
1445 case NFS3_CREATE_UNCHECKED:
1446 if (! S_ISREG(dchild->d_inode->i_mode))
1447 err = nfserr_exist;
1448 else if (truncp) {
1449 /* in nfsv4, we need to treat this case a little
1450 * differently. we don't want to truncate the
1451 * file now; this would be wrong if the OPEN
1452 * fails for some other reason. furthermore,
1453 * if the size is nonzero, we should ignore it
1454 * according to spec!
1455 */
1456 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1457 }
1458 else {
1459 iap->ia_valid &= ATTR_SIZE;
1460 goto set_attr;
1461 }
1462 break;
1463 case NFS3_CREATE_EXCLUSIVE:
1464 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1465 && dchild->d_inode->i_atime.tv_sec == v_atime
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 && dchild->d_inode->i_size == 0 )
1467 break;
1468 /* fallthru */
1469 case NFS3_CREATE_GUARDED:
1470 err = nfserr_exist;
1471 }
Dave Hansen463c3192008-02-15 14:37:57 -08001472 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 goto out;
1474 }
1475
Al Viro6264d692006-10-19 23:28:58 -07001476 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
Dave Hansen463c3192008-02-15 14:37:57 -08001477 if (host_err < 0) {
1478 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001480 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001481 if (created)
1482 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 if (EX_ISSYNC(fhp->fh_export)) {
NeilBrown45bd3b32006-01-18 17:43:50 -08001485 err = nfserrno(nfsd_sync_dir(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 /* setattr will sync the child (or not) */
1487 }
1488
wengang wang4ac35c22009-02-10 11:27:51 +08001489 nfsd_check_ignore_resizing(iap);
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (createmode == NFS3_CREATE_EXCLUSIVE) {
Peter Staubachc3978522007-01-26 00:57:00 -08001492 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001494 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 /* XXX someone who knows this better please fix it for nsec */
1496 iap->ia_mtime.tv_sec = v_mtime;
1497 iap->ia_atime.tv_sec = v_atime;
1498 iap->ia_mtime.tv_nsec = 0;
1499 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 set_attr:
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001503 err2 = nfsd_create_setattr(rqstp, resfhp, iap);
1504 if (err2)
1505 err = err2;
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001506
Dave Hansen463c3192008-02-15 14:37:57 -08001507 mnt_drop_write(fhp->fh_export->ex_path.mnt);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001508 /*
1509 * Update the filehandle to get the new inode info.
1510 */
1511 if (!err)
1512 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 out:
1515 fh_unlock(fhp);
1516 if (dchild && !IS_ERR(dchild))
1517 dput(dchild);
1518 return err;
1519
1520 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001521 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 goto out;
1523}
1524#endif /* CONFIG_NFSD_V3 */
1525
1526/*
1527 * Read a symlink. On entry, *lenp must contain the maximum path length that
1528 * fits into the buffer. On return, it contains the true length.
1529 * N.B. After this call fhp needs an fh_put
1530 */
Al Viro6264d692006-10-19 23:28:58 -07001531__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1533{
1534 struct dentry *dentry;
1535 struct inode *inode;
1536 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001537 __be32 err;
1538 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001540 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (err)
1542 goto out;
1543
1544 dentry = fhp->fh_dentry;
1545 inode = dentry->d_inode;
1546
1547 err = nfserr_inval;
Al Viroacfa4382008-12-04 10:06:33 -05001548 if (!inode->i_op->readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 goto out;
1550
Jan Blunck54775492008-02-14 19:38:39 -08001551 touch_atime(fhp->fh_export->ex_path.mnt, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 /* N.B. Why does this call need a get_fs()??
1553 * Remove the set_fs and watch the fireworks:-) --okir
1554 */
1555
1556 oldfs = get_fs(); set_fs(KERNEL_DS);
Al Viro6264d692006-10-19 23:28:58 -07001557 host_err = inode->i_op->readlink(dentry, buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 set_fs(oldfs);
1559
Al Viro6264d692006-10-19 23:28:58 -07001560 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001562 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 err = 0;
1564out:
1565 return err;
1566
1567out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001568 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 goto out;
1570}
1571
1572/*
1573 * Create a symlink and look up its inode
1574 * N.B. After this call _both_ fhp and resfhp need an fh_put
1575 */
Al Viro6264d692006-10-19 23:28:58 -07001576__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1578 char *fname, int flen,
1579 char *path, int plen,
1580 struct svc_fh *resfhp,
1581 struct iattr *iap)
1582{
1583 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001584 __be32 err, cerr;
1585 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 err = nfserr_noent;
1588 if (!flen || !plen)
1589 goto out;
1590 err = nfserr_exist;
1591 if (isdotent(fname, flen))
1592 goto out;
1593
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001594 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (err)
1596 goto out;
1597 fh_lock(fhp);
1598 dentry = fhp->fh_dentry;
1599 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001600 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (IS_ERR(dnew))
1602 goto out_nfserr;
1603
Dave Hansen75c3f292008-02-15 14:37:45 -08001604 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1605 if (host_err)
1606 goto out_nfserr;
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (unlikely(path[plen] != 0)) {
1609 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1610 if (path_alloced == NULL)
Al Viro6264d692006-10-19 23:28:58 -07001611 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 else {
1613 strncpy(path_alloced, path, plen);
1614 path_alloced[plen] = 0;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001615 host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 kfree(path_alloced);
1617 }
1618 } else
Miklos Szeredidb2e7472008-06-24 16:50:16 +02001619 host_err = vfs_symlink(dentry->d_inode, dnew, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Al Viro6264d692006-10-19 23:28:58 -07001621 if (!host_err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (EX_ISSYNC(fhp->fh_export))
Al Viro6264d692006-10-19 23:28:58 -07001623 host_err = nfsd_sync_dir(dentry);
1624 }
1625 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 fh_unlock(fhp);
1627
Dave Hansen75c3f292008-02-15 14:37:45 -08001628 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1631 dput(dnew);
1632 if (err==0) err = cerr;
1633out:
1634 return err;
1635
1636out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001637 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 goto out;
1639}
1640
1641/*
1642 * Create a hardlink
1643 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1644 */
Al Viro6264d692006-10-19 23:28:58 -07001645__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1647 char *name, int len, struct svc_fh *tfhp)
1648{
1649 struct dentry *ddir, *dnew, *dold;
1650 struct inode *dirp, *dest;
Al Viro6264d692006-10-19 23:28:58 -07001651 __be32 err;
1652 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001654 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (err)
1656 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001657 err = fh_verify(rqstp, tfhp, -S_IFDIR, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (err)
1659 goto out;
1660
1661 err = nfserr_perm;
1662 if (!len)
1663 goto out;
1664 err = nfserr_exist;
1665 if (isdotent(name, len))
1666 goto out;
1667
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001668 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 ddir = ffhp->fh_dentry;
1670 dirp = ddir->d_inode;
1671
1672 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001673 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (IS_ERR(dnew))
1675 goto out_nfserr;
1676
1677 dold = tfhp->fh_dentry;
1678 dest = dold->d_inode;
1679
Dave Hansen75c3f292008-02-15 14:37:45 -08001680 host_err = mnt_want_write(tfhp->fh_export->ex_path.mnt);
1681 if (host_err) {
1682 err = nfserrno(host_err);
1683 goto out_dput;
1684 }
Al Viro6264d692006-10-19 23:28:58 -07001685 host_err = vfs_link(dold, dirp, dnew);
1686 if (!host_err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (EX_ISSYNC(ffhp->fh_export)) {
NeilBrown45bd3b32006-01-18 17:43:50 -08001688 err = nfserrno(nfsd_sync_dir(ddir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 write_inode_now(dest, 1);
1690 }
Al Viro6264d692006-10-19 23:28:58 -07001691 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 } else {
Al Viro6264d692006-10-19 23:28:58 -07001693 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 err = nfserr_acces;
1695 else
Al Viro6264d692006-10-19 23:28:58 -07001696 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001698 mnt_drop_write(tfhp->fh_export->ex_path.mnt);
1699out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001701out_unlock:
1702 fh_unlock(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703out:
1704 return err;
1705
1706out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001707 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001708 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709}
1710
1711/*
1712 * Rename a file
1713 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1714 */
Al Viro6264d692006-10-19 23:28:58 -07001715__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1717 struct svc_fh *tfhp, char *tname, int tlen)
1718{
1719 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1720 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001721 __be32 err;
1722 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001724 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (err)
1726 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001727 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (err)
1729 goto out;
1730
1731 fdentry = ffhp->fh_dentry;
1732 fdir = fdentry->d_inode;
1733
1734 tdentry = tfhp->fh_dentry;
1735 tdir = tdentry->d_inode;
1736
1737 err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
NeilBrowna56f3932006-06-30 01:56:10 -07001738 if (ffhp->fh_export != tfhp->fh_export)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 goto out;
1740
1741 err = nfserr_perm;
1742 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1743 goto out;
1744
1745 /* cannot use fh_lock as we need deadlock protective ordering
1746 * so do it by hand */
1747 trap = lock_rename(tdentry, fdentry);
1748 ffhp->fh_locked = tfhp->fh_locked = 1;
1749 fill_pre_wcc(ffhp);
1750 fill_pre_wcc(tfhp);
1751
1752 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001753 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if (IS_ERR(odentry))
1755 goto out_nfserr;
1756
Al Viro6264d692006-10-19 23:28:58 -07001757 host_err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (!odentry->d_inode)
1759 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001760 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (odentry == trap)
1762 goto out_dput_old;
1763
1764 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001765 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (IS_ERR(ndentry))
1767 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001768 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 if (ndentry == trap)
1770 goto out_dput_new;
1771
Dave Hansen9079b1e2008-02-15 14:37:49 -08001772 if (svc_msnfs(ffhp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 ((atomic_read(&odentry->d_count) > 1)
1774 || (atomic_read(&ndentry->d_count) > 1))) {
Al Viro6264d692006-10-19 23:28:58 -07001775 host_err = -EPERM;
Dave Hansen9079b1e2008-02-15 14:37:49 -08001776 goto out_dput_new;
1777 }
1778
1779 host_err = -EXDEV;
1780 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1781 goto out_dput_new;
1782 host_err = mnt_want_write(ffhp->fh_export->ex_path.mnt);
1783 if (host_err)
1784 goto out_dput_new;
1785
Al Viro6264d692006-10-19 23:28:58 -07001786 host_err = vfs_rename(fdir, odentry, tdir, ndentry);
1787 if (!host_err && EX_ISSYNC(tfhp->fh_export)) {
1788 host_err = nfsd_sync_dir(tdentry);
1789 if (!host_err)
1790 host_err = nfsd_sync_dir(fdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
1792
Dave Hansen9079b1e2008-02-15 14:37:49 -08001793 mnt_drop_write(ffhp->fh_export->ex_path.mnt);
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 out_dput_new:
1796 dput(ndentry);
1797 out_dput_old:
1798 dput(odentry);
1799 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001800 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 /* we cannot reply on fh_unlock on the two filehandles,
1803 * as that would do the wrong thing if the two directories
1804 * were the same, so again we do it by hand
1805 */
1806 fill_post_wcc(ffhp);
1807 fill_post_wcc(tfhp);
1808 unlock_rename(tdentry, fdentry);
1809 ffhp->fh_locked = tfhp->fh_locked = 0;
1810
1811out:
1812 return err;
1813}
1814
1815/*
1816 * Unlink a file or directory
1817 * N.B. After this call fhp needs an fh_put
1818 */
Al Viro6264d692006-10-19 23:28:58 -07001819__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1821 char *fname, int flen)
1822{
1823 struct dentry *dentry, *rdentry;
1824 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001825 __be32 err;
1826 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828 err = nfserr_acces;
1829 if (!flen || isdotent(fname, flen))
1830 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001831 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (err)
1833 goto out;
1834
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001835 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 dentry = fhp->fh_dentry;
1837 dirp = dentry->d_inode;
1838
1839 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001840 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (IS_ERR(rdentry))
1842 goto out_nfserr;
1843
1844 if (!rdentry->d_inode) {
1845 dput(rdentry);
1846 err = nfserr_noent;
1847 goto out;
1848 }
1849
1850 if (!type)
1851 type = rdentry->d_inode->i_mode & S_IFMT;
1852
Dave Hansen06227532008-02-15 14:37:34 -08001853 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1854 if (host_err)
1855 goto out_nfserr;
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (type != S_IFDIR) { /* It's UNLINK */
1858#ifdef MSNFS
1859 if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
1860 (atomic_read(&rdentry->d_count) > 1)) {
Al Viro6264d692006-10-19 23:28:58 -07001861 host_err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 } else
1863#endif
Al Viro6264d692006-10-19 23:28:58 -07001864 host_err = vfs_unlink(dirp, rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 } else { /* It's RMDIR */
Al Viro6264d692006-10-19 23:28:58 -07001866 host_err = vfs_rmdir(dirp, rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868
1869 dput(rdentry);
1870
Al Viro6264d692006-10-19 23:28:58 -07001871 if (host_err)
Dave Hansen06227532008-02-15 14:37:34 -08001872 goto out_drop;
Al Viro6264d692006-10-19 23:28:58 -07001873 if (EX_ISSYNC(fhp->fh_export))
1874 host_err = nfsd_sync_dir(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Dave Hansen06227532008-02-15 14:37:34 -08001876out_drop:
1877 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001879 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001880out:
1881 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
1884/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001885 * We do this buffering because we must not call back into the file
1886 * system's ->lookup() method from the filldir callback. That may well
1887 * deadlock a number of file systems.
1888 *
1889 * This is based heavily on the implementation of same in XFS.
1890 */
1891struct buffered_dirent {
1892 u64 ino;
1893 loff_t offset;
1894 int namlen;
1895 unsigned int d_type;
1896 char name[];
1897};
1898
1899struct readdir_data {
1900 char *dirent;
1901 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001902 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001903};
1904
1905static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
1906 loff_t offset, u64 ino, unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001907{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001908 struct readdir_data *buf = __buf;
1909 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1910 unsigned int reclen;
1911
1912 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001913 if (buf->used + reclen > PAGE_SIZE) {
1914 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001915 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001916 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001917
1918 de->namlen = namlen;
1919 de->offset = offset;
1920 de->ino = ino;
1921 de->d_type = d_type;
1922 memcpy(de->name, name, namlen);
1923 buf->used += reclen;
1924
1925 return 0;
1926}
1927
David Woodhouse2f9092e2009-04-20 23:18:37 +01001928static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
1929 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001930{
1931 struct readdir_data buf;
1932 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001933 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001934 int size;
1935 loff_t offset;
David Woodhouse2628b762008-07-31 17:16:51 +01001936
David Woodhouse14f7dd62008-07-31 20:29:12 +01001937 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
1938 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001939 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001940
David Woodhouse14f7dd62008-07-31 20:29:12 +01001941 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001942
1943 while (1) {
David Woodhouse2f9092e2009-04-20 23:18:37 +01001944 struct inode *dir_inode = file->f_path.dentry->d_inode;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001945 unsigned int reclen;
1946
Doug Nazarb726e922008-11-05 06:16:28 -05001947 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001948 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001949 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001950
1951 host_err = vfs_readdir(file, nfsd_buffered_filldir, &buf);
Al Viro53c9c5c2008-08-24 07:29:52 -04001952 if (buf.full)
1953 host_err = 0;
1954
1955 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001956 break;
1957
1958 size = buf.used;
1959
1960 if (!size)
1961 break;
1962
David Woodhouse2f9092e2009-04-20 23:18:37 +01001963 /*
1964 * Various filldir functions may end up calling back into
1965 * lookup_one_len() and the file system's ->lookup() method.
1966 * These expect i_mutex to be held, as it would within readdir.
1967 */
1968 host_err = mutex_lock_killable(&dir_inode->i_mutex);
1969 if (host_err)
1970 break;
1971
David Woodhouse14f7dd62008-07-31 20:29:12 +01001972 de = (struct buffered_dirent *)buf.dirent;
1973 while (size > 0) {
1974 offset = de->offset;
1975
1976 if (func(cdp, de->name, de->namlen, de->offset,
1977 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01001978 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001979
1980 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001981 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001982
1983 reclen = ALIGN(sizeof(*de) + de->namlen,
1984 sizeof(u64));
1985 size -= reclen;
1986 de = (struct buffered_dirent *)((char *)de + reclen);
1987 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01001988 mutex_unlock(&dir_inode->i_mutex);
1989 if (size > 0) /* We bailed out early */
1990 break;
1991
David Woodhousec002a6c2008-08-17 17:21:18 +01001992 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001993 }
1994
David Woodhouse14f7dd62008-07-31 20:29:12 +01001995 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01001996
1997 if (host_err)
1998 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001999
2000 *offsetp = offset;
2001 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01002002}
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004/*
2005 * Read entries from a directory.
2006 * The NFSv3/4 verifier we ignore for now.
2007 */
Al Viro6264d692006-10-19 23:28:58 -07002008__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
NeilBrowna0ad13e2007-01-26 00:57:10 -08002010 struct readdir_cd *cdp, filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Al Viro6264d692006-10-19 23:28:58 -07002012 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 struct file *file;
2014 loff_t offset = *offsetp;
2015
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002016 err = nfsd_open(rqstp, fhp, S_IFDIR, NFSD_MAY_READ, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 if (err)
2018 goto out;
2019
2020 offset = vfs_llseek(file, offset, 0);
2021 if (offset < 0) {
2022 err = nfserrno((int)offset);
2023 goto out_close;
2024 }
2025
David Woodhouse14f7dd62008-07-31 20:29:12 +01002026 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 if (err == nfserr_eof || err == nfserr_toosmall)
2029 err = nfs_ok; /* can still be found in ->err */
2030out_close:
2031 nfsd_close(file);
2032out:
2033 return err;
2034}
2035
2036/*
2037 * Get file system stats
2038 * N.B. After this call fhp needs an fh_put
2039 */
Al Viro6264d692006-10-19 23:28:58 -07002040__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04002041nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
J. Bruce Fields04716e62008-08-07 13:00:20 -04002043 __be32 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
David Howells726c3342006-06-23 02:02:58 -07002044 if (!err && vfs_statfs(fhp->fh_dentry,stat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 err = nfserr_io;
2046 return err;
2047}
2048
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002049static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002050{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002051 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002052}
2053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054/*
2055 * Check for a user's access permissions to this inode.
2056 */
Al Viro6264d692006-10-19 23:28:58 -07002057__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07002058nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2059 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
2061 struct inode *inode = dentry->d_inode;
Mimi Zohar14dba532009-05-27 09:31:52 -04002062 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 int err;
2064
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002065 if (acc == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 return 0;
2067#if 0
2068 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2069 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002070 (acc & NFSD_MAY_READ)? " read" : "",
2071 (acc & NFSD_MAY_WRITE)? " write" : "",
2072 (acc & NFSD_MAY_EXEC)? " exec" : "",
2073 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2074 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2075 (acc & NFSD_MAY_LOCK)? " lock" : "",
2076 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 inode->i_mode,
2078 IS_IMMUTABLE(inode)? " immut" : "",
2079 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08002080 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11002082 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083#endif
2084
2085 /* Normally we reject any write/sattr etc access on a read-only file
2086 * system. But if it is IRIX doing check on write-access for a
2087 * device special file, we ignore rofs.
2088 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002089 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2090 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08002091 if (exp_rdonly(rqstp, exp) ||
2092 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002094 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 return nfserr_perm;
2096 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002097 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 return nfserr_perm;
2099
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002100 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 /* If we cannot rely on authentication in NLM requests,
2102 * just allow locks, otherwise require read permission, or
2103 * ownership
2104 */
2105 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2106 return 0;
2107 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002108 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
2110 /*
2111 * The file owner always gets access permission for accesses that
2112 * would normally be checked at open time. This is to make
2113 * file access work even when the client has done a fchmod(fd, 0).
2114 *
2115 * However, `cp foo bar' should fail nevertheless when bar is
2116 * readonly. A sensible way to do this might be to reject all
2117 * attempts to truncate a read-only file, because a creat() call
2118 * always implies file truncation.
2119 * ... but this isn't really fair. A process may reasonably call
2120 * ftruncate on an open file descriptor on a file with perm 000.
2121 * We must trust the client to do permission checking - using "ACCESS"
2122 * with NFSv3.
2123 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002124 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
David Howells5cc0a842008-11-14 10:38:58 +11002125 inode->i_uid == current_fsuid())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return 0;
2127
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002128 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04002129 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 /* Allow read access to binaries even when mode 111 */
2132 if (err == -EACCES && S_ISREG(inode->i_mode) &&
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002133 acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE))
Al Virof419a2e2008-07-22 00:07:17 -04002134 err = inode_permission(inode, MAY_EXEC);
Mimi Zohar14dba532009-05-27 09:31:52 -04002135 if (err)
2136 goto nfsd_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Mimi Zohar14dba532009-05-27 09:31:52 -04002138 /* Do integrity (permission) checking now, but defer incrementing
2139 * IMA counts to the actual file open.
2140 */
2141 path.mnt = exp->ex_path.mnt;
2142 path.dentry = dentry;
2143 err = ima_path_check(&path, acc & (MAY_READ | MAY_WRITE | MAY_EXEC),
2144 IMA_COUNT_LEAVE);
2145nfsd_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return err? nfserrno(err) : 0;
2147}
2148
2149void
2150nfsd_racache_shutdown(void)
2151{
Jeff Layton54a66e52008-08-13 22:03:27 -04002152 struct raparms *raparm, *last_raparm;
2153 unsigned int i;
2154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04002156
2157 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2158 raparm = raparm_hash[i].pb_head;
2159 while(raparm) {
2160 last_raparm = raparm;
2161 raparm = raparm->p_next;
2162 kfree(last_raparm);
2163 }
2164 raparm_hash[i].pb_head = NULL;
2165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166}
2167/*
2168 * Initialize readahead param cache
2169 */
2170int
2171nfsd_racache_init(int cache_size)
2172{
2173 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002174 int j = 0;
2175 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002176 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Greg Banksfce14562006-10-04 02:15:49 -07002178
Jeff Layton54a66e52008-08-13 22:03:27 -04002179 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002181 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
2182 if (nperbucket < 2)
2183 nperbucket = 2;
2184 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002185
2186 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002187
2188 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002189 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002190
2191 raparm = &raparm_hash[i].pb_head;
2192 for (j = 0; j < nperbucket; j++) {
2193 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2194 if (!*raparm)
2195 goto out_nomem;
2196 raparm = &(*raparm)->p_next;
2197 }
2198 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002199 }
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 nfsdstats.ra_size = cache_size;
2202 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002203
2204out_nomem:
2205 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2206 nfsd_racache_shutdown();
2207 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208}
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002209
2210#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
2211struct posix_acl *
2212nfsd_get_posix_acl(struct svc_fh *fhp, int type)
2213{
2214 struct inode *inode = fhp->fh_dentry->d_inode;
2215 char *name;
2216 void *value = NULL;
2217 ssize_t size;
2218 struct posix_acl *acl;
2219
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002220 if (!IS_POSIXACL(inode))
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002221 return ERR_PTR(-EOPNOTSUPP);
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002222
2223 switch (type) {
2224 case ACL_TYPE_ACCESS:
2225 name = POSIX_ACL_XATTR_ACCESS;
2226 break;
2227 case ACL_TYPE_DEFAULT:
2228 name = POSIX_ACL_XATTR_DEFAULT;
2229 break;
2230 default:
2231 return ERR_PTR(-EOPNOTSUPP);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002232 }
2233
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002234 size = nfsd_getxattr(fhp->fh_dentry, name, &value);
2235 if (size < 0)
2236 return ERR_PTR(size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002237
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002238 acl = posix_acl_from_xattr(value, size);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002239 kfree(value);
2240 return acl;
2241}
2242
2243int
2244nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
2245{
2246 struct inode *inode = fhp->fh_dentry->d_inode;
2247 char *name;
2248 void *value = NULL;
2249 size_t size;
2250 int error;
2251
Al Viroacfa4382008-12-04 10:06:33 -05002252 if (!IS_POSIXACL(inode) ||
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002253 !inode->i_op->setxattr || !inode->i_op->removexattr)
2254 return -EOPNOTSUPP;
2255 switch(type) {
2256 case ACL_TYPE_ACCESS:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002257 name = POSIX_ACL_XATTR_ACCESS;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002258 break;
2259 case ACL_TYPE_DEFAULT:
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002260 name = POSIX_ACL_XATTR_DEFAULT;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002261 break;
2262 default:
2263 return -EOPNOTSUPP;
2264 }
2265
2266 if (acl && acl->a_count) {
Christoph Hellwig334a13e2005-06-28 20:44:58 -07002267 size = posix_acl_xattr_size(acl->a_count);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002268 value = kmalloc(size, GFP_KERNEL);
2269 if (!value)
2270 return -ENOMEM;
Florin Malita9ccfc292006-05-20 14:59:58 -07002271 error = posix_acl_to_xattr(acl, value, size);
2272 if (error < 0)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002273 goto getout;
Florin Malita9ccfc292006-05-20 14:59:58 -07002274 size = error;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002275 } else
2276 size = 0;
2277
Dave Hansen18f335a2008-02-15 14:37:38 -08002278 error = mnt_want_write(fhp->fh_export->ex_path.mnt);
2279 if (error)
2280 goto getout;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002281 if (size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002282 error = vfs_setxattr(fhp->fh_dentry, name, value, size, 0);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002283 else {
2284 if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
2285 error = 0;
2286 else {
Christoph Hellwig5be196e2006-01-09 20:51:55 -08002287 error = vfs_removexattr(fhp->fh_dentry, name);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002288 if (error == -ENODATA)
2289 error = 0;
2290 }
2291 }
Dave Hansen18f335a2008-02-15 14:37:38 -08002292 mnt_drop_write(fhp->fh_export->ex_path.mnt);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002293
2294getout:
2295 kfree(value);
2296 return error;
2297}
2298#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */