nfsd: don't support msnfs export option
[deliverable/linux.git] / fs / nfsd / vfs.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * File operations used by nfsd. Some of these have been ripped from
3 * other parts of the kernel because they weren't exported, others
4 * are partial duplicates with added or changed functionality.
5 *
6 * Note that several functions dget() the dentry upon which they want
7 * to act, most notably those that create directory entries. Response
8 * dentry's are dput()'d if necessary in the release callback.
9 * So if you notice code paths that apparently fail to dput() the
10 * dentry, don't worry--they have been taken care of.
11 *
12 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
13 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
14 */
15
1da177e4
LT
16#include <linux/fs.h>
17#include <linux/file.h>
d6b29d7c 18#include <linux/splice.h>
1da177e4 19#include <linux/fcntl.h>
1da177e4 20#include <linux/namei.h>
1da177e4 21#include <linux/delay.h>
0eeca283 22#include <linux/fsnotify.h>
1da177e4 23#include <linux/posix_acl_xattr.h>
1da177e4 24#include <linux/xattr.h>
9a74af21
BH
25#include <linux/jhash.h>
26#include <linux/ima.h>
5a0e3ad6 27#include <linux/slab.h>
9a74af21 28#include <asm/uaccess.h>
f501912a
BM
29#include <linux/exportfs.h>
30#include <linux/writeback.h>
9a74af21
BH
31
32#ifdef CONFIG_NFSD_V3
33#include "xdr3.h"
34#endif /* CONFIG_NFSD_V3 */
35
5be196e5 36#ifdef CONFIG_NFSD_V4
2ca72e17
BF
37#include "acl.h"
38#include "idmap.h"
1da177e4
LT
39#endif /* CONFIG_NFSD_V4 */
40
9a74af21
BH
41#include "nfsd.h"
42#include "vfs.h"
1da177e4
LT
43
44#define NFSDDBG_FACILITY NFSDDBG_FILEOP
1da177e4
LT
45
46
1da177e4
LT
47/*
48 * This is a cache of readahead params that help us choose the proper
49 * readahead strategy. Initially, we set all readahead parameters to 0
50 * and let the VFS handle things.
51 * If you increase the number of cached files very much, you'll need to
52 * add a hash table here.
53 */
54struct raparms {
55 struct raparms *p_next;
56 unsigned int p_count;
57 ino_t p_ino;
58 dev_t p_dev;
59 int p_set;
60 struct file_ra_state p_ra;
fce1456a 61 unsigned int p_hindex;
1da177e4
LT
62};
63
fce1456a
GB
64struct raparm_hbucket {
65 struct raparms *pb_head;
66 spinlock_t pb_lock;
67} ____cacheline_aligned_in_smp;
68
fce1456a
GB
69#define RAPARM_HASH_BITS 4
70#define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
71#define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
72static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
1da177e4
LT
73
74/*
75 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
76 * a mount point.
e0bb89ef 77 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
1da177e4
LT
78 * or nfs_ok having possibly changed *dpp and *expp
79 */
80int
81nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
82 struct svc_export **expp)
83{
84 struct svc_export *exp = *expp, *exp2 = NULL;
85 struct dentry *dentry = *dpp;
91c9fa8f
AV
86 struct path path = {.mnt = mntget(exp->ex_path.mnt),
87 .dentry = dget(dentry)};
6264d69d 88 int err = 0;
1da177e4 89
9393bd07 90 while (d_mountpoint(path.dentry) && follow_down(&path))
91c9fa8f 91 ;
1da177e4 92
91c9fa8f 93 exp2 = rqst_exp_get_by_name(rqstp, &path);
1da177e4 94 if (IS_ERR(exp2)) {
3b6cee7b
BF
95 err = PTR_ERR(exp2);
96 /*
97 * We normally allow NFS clients to continue
98 * "underneath" a mountpoint that is not exported.
99 * The exception is V4ROOT, where no traversal is ever
100 * allowed without an explicit export of the new
101 * directory.
102 */
103 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
104 err = 0;
91c9fa8f 105 path_put(&path);
1da177e4
LT
106 goto out;
107 }
3c394dda
SD
108 if (nfsd_v4client(rqstp) ||
109 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
1da177e4 110 /* successfully crossed mount point */
1644ccc8 111 /*
91c9fa8f
AV
112 * This is subtle: path.dentry is *not* on path.mnt
113 * at this point. The only reason we are safe is that
114 * original mnt is pinned down by exp, so we should
115 * put path *before* putting exp
1644ccc8 116 */
91c9fa8f
AV
117 *dpp = path.dentry;
118 path.dentry = dentry;
1644ccc8 119 *expp = exp2;
91c9fa8f 120 exp2 = exp;
1da177e4 121 }
91c9fa8f
AV
122 path_put(&path);
123 exp_put(exp2);
1da177e4
LT
124out:
125 return err;
126}
127
289ede45
BF
128static void follow_to_parent(struct path *path)
129{
130 struct dentry *dp;
131
132 while (path->dentry == path->mnt->mnt_root && follow_up(path))
133 ;
134 dp = dget_parent(path->dentry);
135 dput(path->dentry);
136 path->dentry = dp;
137}
138
139static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
140{
141 struct svc_export *exp2;
142 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
143 .dentry = dget(dparent)};
144
145 follow_to_parent(&path);
146
147 exp2 = rqst_exp_parent(rqstp, &path);
148 if (PTR_ERR(exp2) == -ENOENT) {
149 *dentryp = dget(dparent);
150 } else if (IS_ERR(exp2)) {
151 path_put(&path);
152 return PTR_ERR(exp2);
153 } else {
154 *dentryp = dget(path.dentry);
155 exp_put(*exp);
156 *exp = exp2;
157 }
158 path_put(&path);
159 return 0;
160}
161
82ead7fe
BF
162/*
163 * For nfsd purposes, we treat V4ROOT exports as though there was an
164 * export at *every* directory.
165 */
3227fa41 166int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
82ead7fe
BF
167{
168 if (d_mountpoint(dentry))
169 return 1;
170 if (!(exp->ex_flags & NFSEXP_V4ROOT))
171 return 0;
172 return dentry->d_inode != NULL;
173}
174
6264d69d 175__be32
6c0a654d 176nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
5a022fc8 177 const char *name, unsigned int len,
6c0a654d 178 struct svc_export **exp_ret, struct dentry **dentry_ret)
1da177e4
LT
179{
180 struct svc_export *exp;
181 struct dentry *dparent;
182 struct dentry *dentry;
6264d69d
AV
183 __be32 err;
184 int host_err;
1da177e4
LT
185
186 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
187
188 /* Obtain dentry and export. */
8837abca 189 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
1da177e4
LT
190 if (err)
191 return err;
192
193 dparent = fhp->fh_dentry;
194 exp = fhp->fh_export;
195 exp_get(exp);
196
1da177e4
LT
197 /* Lookup the name, but don't follow links */
198 if (isdotent(name, len)) {
199 if (len==1)
200 dentry = dget(dparent);
54775491 201 else if (dparent != exp->ex_path.dentry)
1da177e4 202 dentry = dget_parent(dparent);
fed83811 203 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
1da177e4
LT
204 dentry = dget(dparent); /* .. == . just like at / */
205 else {
206 /* checking mountpoint crossing is very different when stepping up */
289ede45
BF
207 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
208 if (host_err)
1da177e4 209 goto out_nfserr;
1da177e4
LT
210 }
211 } else {
212 fh_lock(fhp);
213 dentry = lookup_one_len(name, dparent, len);
6264d69d 214 host_err = PTR_ERR(dentry);
1da177e4
LT
215 if (IS_ERR(dentry))
216 goto out_nfserr;
217 /*
218 * check if we have crossed a mount point ...
219 */
82ead7fe 220 if (nfsd_mountpoint(dentry, exp)) {
6264d69d 221 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
1da177e4
LT
222 dput(dentry);
223 goto out_nfserr;
224 }
225 }
226 }
6c0a654d
BF
227 *dentry_ret = dentry;
228 *exp_ret = exp;
229 return 0;
230
231out_nfserr:
232 exp_put(exp);
233 return nfserrno(host_err);
234}
235
236/*
237 * Look up one component of a pathname.
238 * N.B. After this call _both_ fhp and resfh need an fh_put
239 *
240 * If the lookup would cross a mountpoint, and the mounted filesystem
241 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
242 * accepted as it stands and the mounted directory is
243 * returned. Otherwise the covered directory is returned.
244 * NOTE: this mountpoint crossing is not supported properly by all
245 * clients and is explicitly disallowed for NFSv3
246 * NeilBrown <neilb@cse.unsw.edu.au>
247 */
248__be32
249nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
5a022fc8 250 unsigned int len, struct svc_fh *resfh)
6c0a654d
BF
251{
252 struct svc_export *exp;
253 struct dentry *dentry;
254 __be32 err;
255
256 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
257 if (err)
258 return err;
32c1eb0c
AA
259 err = check_nfsd_access(exp, rqstp);
260 if (err)
261 goto out;
1da177e4
LT
262 /*
263 * Note: we compose the file handle now, but as the
264 * dentry may be negative, it may need to be updated.
265 */
266 err = fh_compose(resfh, exp, dentry, fhp);
267 if (!err && !dentry->d_inode)
268 err = nfserr_noent;
32c1eb0c 269out:
1da177e4 270 dput(dentry);
1da177e4
LT
271 exp_put(exp);
272 return err;
1da177e4
LT
273}
274
f501912a
BM
275/*
276 * Commit metadata changes to stable storage.
277 */
278static int
279commit_metadata(struct svc_fh *fhp)
280{
281 struct inode *inode = fhp->fh_dentry->d_inode;
282 const struct export_operations *export_ops = inode->i_sb->s_export_op;
f501912a
BM
283
284 if (!EX_ISSYNC(fhp->fh_export))
285 return 0;
286
c3765016
CH
287 if (export_ops->commit_metadata)
288 return export_ops->commit_metadata(inode);
289 return sync_inode_metadata(inode, 1);
f501912a 290}
6c0a654d 291
1da177e4
LT
292/*
293 * Set various file attributes.
294 * N.B. After this call fhp needs an fh_put
295 */
6264d69d 296__be32
1da177e4
LT
297nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
298 int check_guard, time_t guardtime)
299{
300 struct dentry *dentry;
301 struct inode *inode;
8837abca 302 int accmode = NFSD_MAY_SATTR;
1da177e4 303 int ftype = 0;
6264d69d
AV
304 __be32 err;
305 int host_err;
1da177e4
LT
306 int size_change = 0;
307
308 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
8837abca 309 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
1da177e4
LT
310 if (iap->ia_valid & ATTR_SIZE)
311 ftype = S_IFREG;
312
313 /* Get inode */
314 err = fh_verify(rqstp, fhp, ftype, accmode);
15b7a1b8 315 if (err)
1da177e4
LT
316 goto out;
317
318 dentry = fhp->fh_dentry;
319 inode = dentry->d_inode;
320
15b7a1b8
N
321 /* Ignore any mode updates on symlinks */
322 if (S_ISLNK(inode->i_mode))
323 iap->ia_valid &= ~ATTR_MODE;
324
325 if (!iap->ia_valid)
326 goto out;
327
9c85fca5
CH
328 /*
329 * NFSv2 does not differentiate between "set-[ac]time-to-now"
1da177e4
LT
330 * which only requires access, and "set-[ac]time-to-X" which
331 * requires ownership.
332 * So if it looks like it might be "set both to the same time which
333 * is close to now", and if inode_change_ok fails, then we
334 * convert to "set to now" instead of "set to explicit time"
335 *
336 * We only call inode_change_ok as the last test as technically
337 * it is not an interface that we should be using. It is only
338 * valid if the filesystem does not define it's own i_op->setattr.
339 */
340#define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
341#define MAX_TOUCH_TIME_ERROR (30*60)
9c85fca5
CH
342 if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
343 iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
344 /*
345 * Looks probable.
346 *
347 * Now just make sure time is in the right ballpark.
348 * Solaris, at least, doesn't seem to care what the time
349 * request is. We require it be within 30 minutes of now.
1da177e4 350 */
9c85fca5
CH
351 time_t delta = iap->ia_atime.tv_sec - get_seconds();
352 if (delta < 0)
353 delta = -delta;
354 if (delta < MAX_TOUCH_TIME_ERROR &&
355 inode_change_ok(inode, iap) != 0) {
356 /*
357 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
358 * This will cause notify_change to set these times
359 * to "now"
360 */
361 iap->ia_valid &= ~BOTH_TIME_SET;
362 }
1da177e4
LT
363 }
364
9c85fca5
CH
365 /*
366 * The size case is special.
367 * It changes the file as well as the attributes.
368 */
1da177e4
LT
369 if (iap->ia_valid & ATTR_SIZE) {
370 if (iap->ia_size < inode->i_size) {
8837abca
MS
371 err = nfsd_permission(rqstp, fhp->fh_export, dentry,
372 NFSD_MAY_TRUNC|NFSD_MAY_OWNER_OVERRIDE);
1da177e4
LT
373 if (err)
374 goto out;
375 }
376
377 /*
378 * If we are changing the size of the file, then
379 * we need to break all leases.
380 */
8737c930 381 host_err = break_lease(inode, O_WRONLY | O_NONBLOCK);
6264d69d 382 if (host_err) /* ENOMEM or EWOULDBLOCK */
1da177e4
LT
383 goto out_nfserr;
384
6264d69d
AV
385 host_err = get_write_access(inode);
386 if (host_err)
1da177e4
LT
387 goto out_nfserr;
388
389 size_change = 1;
6264d69d
AV
390 host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
391 if (host_err) {
1da177e4
LT
392 put_write_access(inode);
393 goto out_nfserr;
394 }
1da177e4
LT
395 }
396
ca456252 397 /* sanitize the mode change */
1da177e4
LT
398 if (iap->ia_valid & ATTR_MODE) {
399 iap->ia_mode &= S_IALLUGO;
dee3209d 400 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
ca456252
JL
401 }
402
403 /* Revoke setuid/setgid on chown */
0953e620
SP
404 if (!S_ISDIR(inode->i_mode) &&
405 (((iap->ia_valid & ATTR_UID) && iap->ia_uid != inode->i_uid) ||
406 ((iap->ia_valid & ATTR_GID) && iap->ia_gid != inode->i_gid))) {
ca456252
JL
407 iap->ia_valid |= ATTR_KILL_PRIV;
408 if (iap->ia_valid & ATTR_MODE) {
409 /* we're setting mode too, just clear the s*id bits */
8a0ce7d9 410 iap->ia_mode &= ~S_ISUID;
ca456252
JL
411 if (iap->ia_mode & S_IXGRP)
412 iap->ia_mode &= ~S_ISGID;
413 } else {
414 /* set ATTR_KILL_* bits and let VFS handle it */
415 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
8a0ce7d9 416 }
1da177e4
LT
417 }
418
1da177e4
LT
419 /* Change the attributes. */
420
421 iap->ia_valid |= ATTR_CTIME;
422
423 err = nfserr_notsync;
424 if (!check_guard || guardtime == inode->i_ctime.tv_sec) {
425 fh_lock(fhp);
6264d69d
AV
426 host_err = notify_change(dentry, iap);
427 err = nfserrno(host_err);
1da177e4
LT
428 fh_unlock(fhp);
429 }
430 if (size_change)
431 put_write_access(inode);
432 if (!err)
b160fdab 433 commit_metadata(fhp);
1da177e4
LT
434out:
435 return err;
436
437out_nfserr:
6264d69d 438 err = nfserrno(host_err);
1da177e4
LT
439 goto out;
440}
441
5be196e5
CH
442#if defined(CONFIG_NFSD_V2_ACL) || \
443 defined(CONFIG_NFSD_V3_ACL) || \
444 defined(CONFIG_NFSD_V4)
445static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
446{
447 ssize_t buflen;
6c6a426f 448 ssize_t ret;
5be196e5
CH
449
450 buflen = vfs_getxattr(dentry, key, NULL, 0);
451 if (buflen <= 0)
452 return buflen;
1da177e4 453
5be196e5
CH
454 *buf = kmalloc(buflen, GFP_KERNEL);
455 if (!*buf)
456 return -ENOMEM;
457
6c6a426f
KK
458 ret = vfs_getxattr(dentry, key, *buf, buflen);
459 if (ret < 0)
460 kfree(*buf);
461 return ret;
5be196e5
CH
462}
463#endif
464
465#if defined(CONFIG_NFSD_V4)
1da177e4
LT
466static int
467set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
468{
469 int len;
470 size_t buflen;
471 char *buf = NULL;
472 int error = 0;
1da177e4
LT
473
474 buflen = posix_acl_xattr_size(pacl->a_count);
475 buf = kmalloc(buflen, GFP_KERNEL);
476 error = -ENOMEM;
477 if (buf == NULL)
478 goto out;
479
480 len = posix_acl_to_xattr(pacl, buf, buflen);
481 if (len < 0) {
482 error = len;
483 goto out;
484 }
485
5be196e5 486 error = vfs_setxattr(dentry, key, buf, len, 0);
1da177e4
LT
487out:
488 kfree(buf);
489 return error;
490}
491
6264d69d 492__be32
1da177e4
LT
493nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
494 struct nfs4_acl *acl)
495{
6264d69d
AV
496 __be32 error;
497 int host_error;
1da177e4
LT
498 struct dentry *dentry;
499 struct inode *inode;
500 struct posix_acl *pacl = NULL, *dpacl = NULL;
501 unsigned int flags = 0;
502
503 /* Get inode */
8837abca 504 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
1da177e4 505 if (error)
4b2ca38a 506 return error;
1da177e4
LT
507
508 dentry = fhp->fh_dentry;
509 inode = dentry->d_inode;
510 if (S_ISDIR(inode->i_mode))
511 flags = NFS4_ACL_DIR;
512
6264d69d
AV
513 host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
514 if (host_error == -EINVAL) {
4b2ca38a 515 return nfserr_attrnotsupp;
6264d69d 516 } else if (host_error < 0)
1da177e4
LT
517 goto out_nfserr;
518
6264d69d
AV
519 host_error = set_nfsv4_acl_one(dentry, pacl, POSIX_ACL_XATTR_ACCESS);
520 if (host_error < 0)
4b2ca38a 521 goto out_release;
1da177e4 522
4b2ca38a 523 if (S_ISDIR(inode->i_mode))
6264d69d 524 host_error = set_nfsv4_acl_one(dentry, dpacl, POSIX_ACL_XATTR_DEFAULT);
1da177e4 525
4b2ca38a 526out_release:
1da177e4
LT
527 posix_acl_release(pacl);
528 posix_acl_release(dpacl);
1da177e4 529out_nfserr:
f34f9242 530 if (host_error == -EOPNOTSUPP)
4b2ca38a 531 return nfserr_attrnotsupp;
f34f9242 532 else
4b2ca38a 533 return nfserrno(host_error);
1da177e4
LT
534}
535
536static struct posix_acl *
537_get_posix_acl(struct dentry *dentry, char *key)
538{
5be196e5 539 void *buf = NULL;
1da177e4 540 struct posix_acl *pacl = NULL;
5be196e5 541 int buflen;
1da177e4 542
5be196e5
CH
543 buflen = nfsd_getxattr(dentry, key, &buf);
544 if (!buflen)
545 buflen = -ENODATA;
546 if (buflen <= 0)
547 return ERR_PTR(buflen);
1da177e4
LT
548
549 pacl = posix_acl_from_xattr(buf, buflen);
1da177e4
LT
550 kfree(buf);
551 return pacl;
1da177e4
LT
552}
553
554int
555nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
556{
557 struct inode *inode = dentry->d_inode;
558 int error = 0;
559 struct posix_acl *pacl = NULL, *dpacl = NULL;
560 unsigned int flags = 0;
561
9a59f452 562 pacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_ACCESS);
1da177e4
LT
563 if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
564 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
565 if (IS_ERR(pacl)) {
566 error = PTR_ERR(pacl);
567 pacl = NULL;
568 goto out;
569 }
570
571 if (S_ISDIR(inode->i_mode)) {
9a59f452 572 dpacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_DEFAULT);
1da177e4
LT
573 if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
574 dpacl = NULL;
575 else if (IS_ERR(dpacl)) {
576 error = PTR_ERR(dpacl);
577 dpacl = NULL;
578 goto out;
579 }
580 flags = NFS4_ACL_DIR;
581 }
582
583 *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
584 if (IS_ERR(*acl)) {
585 error = PTR_ERR(*acl);
586 *acl = NULL;
587 }
588 out:
589 posix_acl_release(pacl);
590 posix_acl_release(dpacl);
591 return error;
592}
593
6a85d6c7 594#endif /* defined(CONFIG_NFSD_V4) */
1da177e4
LT
595
596#ifdef CONFIG_NFSD_V3
597/*
598 * Check server access rights to a file system object
599 */
600struct accessmap {
601 u32 access;
602 int how;
603};
604static struct accessmap nfs3_regaccess[] = {
8837abca
MS
605 { NFS3_ACCESS_READ, NFSD_MAY_READ },
606 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
607 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
608 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
1da177e4
LT
609
610 { 0, 0 }
611};
612
613static struct accessmap nfs3_diraccess[] = {
8837abca
MS
614 { NFS3_ACCESS_READ, NFSD_MAY_READ },
615 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
616 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
617 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
618 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
1da177e4
LT
619
620 { 0, 0 }
621};
622
623static struct accessmap nfs3_anyaccess[] = {
624 /* Some clients - Solaris 2.6 at least, make an access call
625 * to the server to check for access for things like /dev/null
626 * (which really, the server doesn't care about). So
627 * We provide simple access checking for them, looking
628 * mainly at mode bits, and we make sure to ignore read-only
629 * filesystem checks
630 */
8837abca
MS
631 { NFS3_ACCESS_READ, NFSD_MAY_READ },
632 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
633 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
634 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
1da177e4
LT
635
636 { 0, 0 }
637};
638
6264d69d 639__be32
1da177e4
LT
640nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
641{
642 struct accessmap *map;
643 struct svc_export *export;
644 struct dentry *dentry;
645 u32 query, result = 0, sresult = 0;
6264d69d 646 __be32 error;
1da177e4 647
8837abca 648 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
1da177e4
LT
649 if (error)
650 goto out;
651
652 export = fhp->fh_export;
653 dentry = fhp->fh_dentry;
654
655 if (S_ISREG(dentry->d_inode->i_mode))
656 map = nfs3_regaccess;
657 else if (S_ISDIR(dentry->d_inode->i_mode))
658 map = nfs3_diraccess;
659 else
660 map = nfs3_anyaccess;
661
662
663 query = *access;
664 for (; map->access; map++) {
665 if (map->access & query) {
6264d69d 666 __be32 err2;
1da177e4
LT
667
668 sresult |= map->access;
669
0ec757df 670 err2 = nfsd_permission(rqstp, export, dentry, map->how);
1da177e4
LT
671 switch (err2) {
672 case nfs_ok:
673 result |= map->access;
674 break;
675
676 /* the following error codes just mean the access was not allowed,
677 * rather than an error occurred */
678 case nfserr_rofs:
679 case nfserr_acces:
680 case nfserr_perm:
681 /* simply don't "or" in the access bit. */
682 break;
683 default:
684 error = err2;
685 goto out;
686 }
687 }
688 }
689 *access = result;
690 if (supported)
691 *supported = sresult;
692
693 out:
694 return error;
695}
696#endif /* CONFIG_NFSD_V3 */
697
698
699
700/*
701 * Open an existing file or directory.
702 * The access argument indicates the type of open (read/write/lock)
703 * N.B. After this call fhp needs an fh_put
704 */
6264d69d 705__be32
1da177e4
LT
706nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
707 int access, struct file **filp)
708{
709 struct dentry *dentry;
710 struct inode *inode;
6264d69d
AV
711 int flags = O_RDONLY|O_LARGEFILE;
712 __be32 err;
91885258 713 int host_err = 0;
1da177e4 714
e0e81739
DH
715 validate_process_creds();
716
1da177e4
LT
717 /*
718 * If we get here, then the client has already done an "open",
719 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
720 * in case a chmod has now revoked permission.
721 */
8837abca 722 err = fh_verify(rqstp, fhp, type, access | NFSD_MAY_OWNER_OVERRIDE);
1da177e4
LT
723 if (err)
724 goto out;
725
726 dentry = fhp->fh_dentry;
727 inode = dentry->d_inode;
728
729 /* Disallow write access to files with the append-only bit set
730 * or any access when mandatory locking enabled
731 */
732 err = nfserr_perm;
8837abca 733 if (IS_APPEND(inode) && (access & NFSD_MAY_WRITE))
1da177e4 734 goto out;
5e7fc436
BF
735 /*
736 * We must ignore files (but only files) which might have mandatory
737 * locks on them because there is no way to know if the accesser has
738 * the lock.
739 */
740 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
1da177e4
LT
741 goto out;
742
743 if (!inode->i_fop)
744 goto out;
745
746 /*
747 * Check to see if there are any leases on this file.
748 * This may block while leases are broken.
749 */
91885258
JL
750 if (!(access & NFSD_MAY_NOT_BREAK_LEASE))
751 host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0));
6264d69d 752 if (host_err) /* NOMEM or WOULDBLOCK */
1da177e4
LT
753 goto out_nfserr;
754
8837abca
MS
755 if (access & NFSD_MAY_WRITE) {
756 if (access & NFSD_MAY_READ)
9ecb6a08
BF
757 flags = O_RDWR|O_LARGEFILE;
758 else
759 flags = O_WRONLY|O_LARGEFILE;
1da177e4 760 }
54775491 761 *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt),
033a666c 762 flags, current_cred());
1da177e4 763 if (IS_ERR(*filp))
6264d69d 764 host_err = PTR_ERR(*filp);
aeaa5ccd
CE
765 else
766 host_err = ima_file_check(*filp, access);
1da177e4 767out_nfserr:
6264d69d 768 err = nfserrno(host_err);
1da177e4 769out:
e0e81739 770 validate_process_creds();
1da177e4
LT
771 return err;
772}
773
774/*
775 * Close a file.
776 */
777void
778nfsd_close(struct file *filp)
779{
780 fput(filp);
781}
782
1da177e4
LT
783/*
784 * Obtain the readahead parameters for the file
785 * specified by (dev, ino).
786 */
1da177e4
LT
787
788static inline struct raparms *
789nfsd_get_raparms(dev_t dev, ino_t ino)
790{
791 struct raparms *ra, **rap, **frap = NULL;
792 int depth = 0;
fce1456a
GB
793 unsigned int hash;
794 struct raparm_hbucket *rab;
795
796 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
797 rab = &raparm_hash[hash];
1da177e4 798
fce1456a
GB
799 spin_lock(&rab->pb_lock);
800 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
1da177e4
LT
801 if (ra->p_ino == ino && ra->p_dev == dev)
802 goto found;
803 depth++;
804 if (ra->p_count == 0)
805 frap = rap;
806 }
807 depth = nfsdstats.ra_size*11/10;
808 if (!frap) {
fce1456a 809 spin_unlock(&rab->pb_lock);
1da177e4
LT
810 return NULL;
811 }
812 rap = frap;
813 ra = *frap;
814 ra->p_dev = dev;
815 ra->p_ino = ino;
816 ra->p_set = 0;
fce1456a 817 ra->p_hindex = hash;
1da177e4 818found:
fce1456a 819 if (rap != &rab->pb_head) {
1da177e4 820 *rap = ra->p_next;
fce1456a
GB
821 ra->p_next = rab->pb_head;
822 rab->pb_head = ra;
1da177e4
LT
823 }
824 ra->p_count++;
825 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
fce1456a 826 spin_unlock(&rab->pb_lock);
1da177e4
LT
827 return ra;
828}
829
830/*
cf8208d0
JA
831 * Grab and keep cached pages associated with a file in the svc_rqst
832 * so that they can be passed to the network sendmsg/sendpage routines
833 * directly. They will be released after the sending has completed.
1da177e4
LT
834 */
835static int
cf8208d0
JA
836nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
837 struct splice_desc *sd)
1da177e4 838{
cf8208d0 839 struct svc_rqst *rqstp = sd->u.data;
44524359 840 struct page **pp = rqstp->rq_respages + rqstp->rq_resused;
cf8208d0
JA
841 struct page *page = buf->page;
842 size_t size;
843 int ret;
1da177e4 844
cac36bb0 845 ret = buf->ops->confirm(pipe, buf);
cf8208d0
JA
846 if (unlikely(ret))
847 return ret;
848
849 size = sd->len;
1da177e4
LT
850
851 if (rqstp->rq_res.page_len == 0) {
852 get_page(page);
44524359
N
853 put_page(*pp);
854 *pp = page;
855 rqstp->rq_resused++;
cf8208d0 856 rqstp->rq_res.page_base = buf->offset;
1da177e4 857 rqstp->rq_res.page_len = size;
44524359 858 } else if (page != pp[-1]) {
1da177e4 859 get_page(page);
250f3915
N
860 if (*pp)
861 put_page(*pp);
44524359
N
862 *pp = page;
863 rqstp->rq_resused++;
1da177e4 864 rqstp->rq_res.page_len += size;
44524359 865 } else
1da177e4 866 rqstp->rq_res.page_len += size;
1da177e4 867
1da177e4
LT
868 return size;
869}
870
cf8208d0
JA
871static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
872 struct splice_desc *sd)
873{
874 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
875}
876
6264d69d 877static __be32
1da177e4
LT
878nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
879 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
880{
881 struct inode *inode;
1da177e4 882 mm_segment_t oldfs;
6264d69d
AV
883 __be32 err;
884 int host_err;
1da177e4
LT
885
886 err = nfserr_perm;
7eaa36e2 887 inode = file->f_path.dentry->d_inode;
a8754bee 888
cf8208d0
JA
889 if (file->f_op->splice_read && rqstp->rq_splice_ok) {
890 struct splice_desc sd = {
891 .len = 0,
892 .total_len = *count,
893 .pos = offset,
894 .u.data = rqstp,
895 };
896
4fbef206 897 rqstp->rq_resused = 1;
cf8208d0 898 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
1da177e4
LT
899 } else {
900 oldfs = get_fs();
901 set_fs(KERNEL_DS);
6264d69d 902 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
1da177e4
LT
903 set_fs(oldfs);
904 }
905
6264d69d
AV
906 if (host_err >= 0) {
907 nfsdstats.io_read += host_err;
908 *count = host_err;
1da177e4 909 err = 0;
2a12a9d7 910 fsnotify_access(file);
1da177e4 911 } else
6264d69d 912 err = nfserrno(host_err);
1da177e4
LT
913 return err;
914}
915
9f708e40
NB
916static void kill_suid(struct dentry *dentry)
917{
918 struct iattr ia;
b5376771 919 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
9f708e40 920
1b1dcc1b 921 mutex_lock(&dentry->d_inode->i_mutex);
9f708e40 922 notify_change(dentry, &ia);
1b1dcc1b 923 mutex_unlock(&dentry->d_inode->i_mutex);
9f708e40
NB
924}
925
d911df7b
BF
926/*
927 * Gathered writes: If another process is currently writing to the file,
928 * there's a high chance this is another nfsd (triggered by a bulk write
929 * from a client's biod). Rather than syncing the file with each write
930 * request, we sleep for 10 msec.
931 *
932 * I don't know if this roughly approximates C. Juszak's idea of
933 * gathered writes, but it's a nice and simple solution (IMHO), and it
934 * seems to work:-)
935 *
936 * Note: we do this only in the NFSv2 case, since v3 and higher have a
937 * better tool (separate unstable writes and commits) for solving this
938 * problem.
939 */
940static int wait_for_concurrent_writes(struct file *file)
941{
942 struct inode *inode = file->f_path.dentry->d_inode;
943 static ino_t last_ino;
944 static dev_t last_dev;
945 int err = 0;
946
947 if (atomic_read(&inode->i_writecount) > 1
948 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
949 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
950 msleep(10);
951 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
952 }
953
954 if (inode->i_state & I_DIRTY) {
955 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
8018ab05 956 err = vfs_fsync(file, 0);
d911df7b
BF
957 }
958 last_ino = inode->i_ino;
959 last_dev = inode->i_sb->s_dev;
960 return err;
961}
962
6264d69d 963static __be32
1da177e4
LT
964nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
965 loff_t offset, struct kvec *vec, int vlen,
31dec253 966 unsigned long *cnt, int *stablep)
1da177e4
LT
967{
968 struct svc_export *exp;
969 struct dentry *dentry;
970 struct inode *inode;
971 mm_segment_t oldfs;
6264d69d
AV
972 __be32 err = 0;
973 int host_err;
1da177e4 974 int stable = *stablep;
48e03bc5 975 int use_wgather;
1da177e4 976
7eaa36e2 977 dentry = file->f_path.dentry;
1da177e4
LT
978 inode = dentry->d_inode;
979 exp = fhp->fh_export;
980
981 /*
982 * Request sync writes if
983 * - the sync export option has been set, or
984 * - the client requested O_SYNC behavior (NFSv3 feature).
985 * - The file system doesn't support fsync().
48e03bc5 986 * When NFSv2 gathered writes have been configured for this volume,
1da177e4
LT
987 * flushing the data to disk is handled separately below.
988 */
48e03bc5 989 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
1da177e4 990
3ba15148 991 if (!file->f_op->fsync) {/* COMMIT3 cannot work */
1da177e4
LT
992 stable = 2;
993 *stablep = 2; /* FILE_SYNC */
994 }
995
996 if (!EX_ISSYNC(exp))
997 stable = 0;
48e03bc5 998 if (stable && !use_wgather) {
db1dd4d3 999 spin_lock(&file->f_lock);
1da177e4 1000 file->f_flags |= O_SYNC;
db1dd4d3
JC
1001 spin_unlock(&file->f_lock);
1002 }
1da177e4
LT
1003
1004 /* Write the data. */
1005 oldfs = get_fs(); set_fs(KERNEL_DS);
6264d69d 1006 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
1da177e4 1007 set_fs(oldfs);
e4636d53
BF
1008 if (host_err < 0)
1009 goto out_nfserr;
1010 *cnt = host_err;
1011 nfsdstats.io_write += host_err;
2a12a9d7 1012 fsnotify_modify(file);
1da177e4
LT
1013
1014 /* clear setuid/setgid flag after write */
e4636d53 1015 if (inode->i_mode & (S_ISUID | S_ISGID))
9f708e40 1016 kill_suid(dentry);
1da177e4 1017
e4636d53 1018 if (stable && use_wgather)
d911df7b 1019 host_err = wait_for_concurrent_writes(file);
1da177e4 1020
e4636d53 1021out_nfserr:
6264d69d 1022 dprintk("nfsd: write complete host_err=%d\n", host_err);
a0d24b29 1023 if (host_err >= 0)
1da177e4 1024 err = 0;
a0d24b29 1025 else
6264d69d 1026 err = nfserrno(host_err);
1da177e4
LT
1027 return err;
1028}
1029
1030/*
1031 * Read data from a file. count must contain the requested read count
1032 * on entry. On return, *count contains the number of bytes actually read.
1033 * N.B. After this call fhp needs an fh_put
1034 */
039a87ca 1035__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
fa0a2126
BF
1036 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
1037{
1038 struct file *file;
1039 struct inode *inode;
1040 struct raparms *ra;
1041 __be32 err;
1042
1043 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
1044 if (err)
1045 return err;
1046
1047 inode = file->f_path.dentry->d_inode;
1048
1049 /* Get readahead parameters */
1050 ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
1051
1052 if (ra && ra->p_set)
1053 file->f_ra = ra->p_ra;
1054
1055 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1056
1057 /* Write back readahead params */
1058 if (ra) {
1059 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
1060 spin_lock(&rab->pb_lock);
1061 ra->p_ra = file->f_ra;
1062 ra->p_set = 1;
1063 ra->p_count--;
1064 spin_unlock(&rab->pb_lock);
1065 }
1066
1067 nfsd_close(file);
1068 return err;
1069}
1070
039a87ca 1071/* As above, but use the provided file descriptor. */
6264d69d 1072__be32
039a87ca 1073nfsd_read_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1da177e4
LT
1074 loff_t offset, struct kvec *vec, int vlen,
1075 unsigned long *count)
1076{
6264d69d 1077 __be32 err;
1da177e4
LT
1078
1079 if (file) {
0ec757df 1080 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
8837abca 1081 NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
1da177e4
LT
1082 if (err)
1083 goto out;
1084 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
039a87ca
BF
1085 } else /* Note file may still be NULL in NFSv4 special stateid case: */
1086 err = nfsd_read(rqstp, fhp, offset, vec, vlen, count);
1da177e4
LT
1087out:
1088 return err;
1089}
1090
1091/*
1092 * Write data to a file.
1093 * The stable flag requests synchronous writes.
1094 * N.B. After this call fhp needs an fh_put
1095 */
6264d69d 1096__be32
1da177e4 1097nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
31dec253 1098 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
1da177e4
LT
1099 int *stablep)
1100{
6264d69d 1101 __be32 err = 0;
1da177e4
LT
1102
1103 if (file) {
0ec757df 1104 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
8837abca 1105 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
1da177e4
LT
1106 if (err)
1107 goto out;
1108 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1109 stablep);
1110 } else {
8837abca 1111 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
1da177e4
LT
1112 if (err)
1113 goto out;
1114
1115 if (cnt)
1116 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1117 cnt, stablep);
1118 nfsd_close(file);
1119 }
1120out:
1121 return err;
1122}
1123
1124#ifdef CONFIG_NFSD_V3
1125/*
1126 * Commit all pending writes to stable storage.
aa696a6f
TM
1127 *
1128 * Note: we only guarantee that data that lies within the range specified
1129 * by the 'offset' and 'count' parameters will be synced.
1da177e4
LT
1130 *
1131 * Unfortunately we cannot lock the file to make sure we return full WCC
1132 * data to the client, as locking happens lower down in the filesystem.
1133 */
6264d69d 1134__be32
1da177e4
LT
1135nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1136 loff_t offset, unsigned long count)
1137{
1138 struct file *file;
aa696a6f
TM
1139 loff_t end = LLONG_MAX;
1140 __be32 err = nfserr_inval;
1da177e4 1141
aa696a6f
TM
1142 if (offset < 0)
1143 goto out;
1144 if (count != 0) {
1145 end = offset + (loff_t)count - 1;
1146 if (end < offset)
1147 goto out;
1148 }
1da177e4 1149
91885258
JL
1150 err = nfsd_open(rqstp, fhp, S_IFREG,
1151 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
8837abca 1152 if (err)
aa696a6f 1153 goto out;
1da177e4 1154 if (EX_ISSYNC(fhp->fh_export)) {
8018ab05 1155 int err2 = vfs_fsync_range(file, offset, end, 0);
aa696a6f
TM
1156
1157 if (err2 != -EINVAL)
1158 err = nfserrno(err2);
1159 else
1da177e4 1160 err = nfserr_notsupp;
1da177e4
LT
1161 }
1162
1163 nfsd_close(file);
aa696a6f 1164out:
1da177e4
LT
1165 return err;
1166}
1167#endif /* CONFIG_NFSD_V3 */
1168
f2b0dee2 1169static __be32
5c002b3b
BF
1170nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1171 struct iattr *iap)
1172{
1173 /*
1174 * Mode has already been set earlier in create:
1175 */
1176 iap->ia_valid &= ~ATTR_MODE;
1177 /*
1178 * Setting uid/gid works only for root. Irix appears to
1179 * send along the gid on create when it tries to implement
1180 * setgid directories via NFS:
1181 */
5cc0a840 1182 if (current_fsuid() != 0)
5c002b3b
BF
1183 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1184 if (iap->ia_valid)
1185 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1186 return 0;
1187}
1188
4ac35c2f 1189/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1190 * setting size to 0 may fail for some specific file systems by the permission
1191 * checking which requires WRITE permission but the mode is 000.
1192 * we ignore the resizing(to 0) on the just new created file, since the size is
1193 * 0 after file created.
1194 *
1195 * call this only after vfs_create() is called.
1196 * */
1197static void
1198nfsd_check_ignore_resizing(struct iattr *iap)
1199{
1200 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1201 iap->ia_valid &= ~ATTR_SIZE;
1202}
1203
1da177e4
LT
1204/*
1205 * Create a file (regular, directory, device, fifo); UNIX sockets
1206 * not yet implemented.
1207 * If the response fh has been verified, the parent directory should
1208 * already be locked. Note that the parent directory is left locked.
1209 *
1210 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1211 */
6264d69d 1212__be32
1da177e4
LT
1213nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1214 char *fname, int flen, struct iattr *iap,
1215 int type, dev_t rdev, struct svc_fh *resfhp)
1216{
1217 struct dentry *dentry, *dchild = NULL;
1218 struct inode *dirp;
6264d69d 1219 __be32 err;
5c002b3b 1220 __be32 err2;
6264d69d 1221 int host_err;
1da177e4
LT
1222
1223 err = nfserr_perm;
1224 if (!flen)
1225 goto out;
1226 err = nfserr_exist;
1227 if (isdotent(fname, flen))
1228 goto out;
1229
8837abca 1230 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1231 if (err)
1232 goto out;
1233
1234 dentry = fhp->fh_dentry;
1235 dirp = dentry->d_inode;
1236
1237 err = nfserr_notdir;
acfa4380 1238 if (!dirp->i_op->lookup)
1da177e4
LT
1239 goto out;
1240 /*
1241 * Check whether the response file handle has been verified yet.
1242 * If it has, the parent directory should already be locked.
1243 */
1244 if (!resfhp->fh_dentry) {
1245 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
12fd3520 1246 fh_lock_nested(fhp, I_MUTEX_PARENT);
1da177e4 1247 dchild = lookup_one_len(fname, dentry, flen);
6264d69d 1248 host_err = PTR_ERR(dchild);
1da177e4
LT
1249 if (IS_ERR(dchild))
1250 goto out_nfserr;
1251 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1252 if (err)
1253 goto out;
1254 } else {
1255 /* called from nfsd_proc_create */
1256 dchild = dget(resfhp->fh_dentry);
1257 if (!fhp->fh_locked) {
1258 /* not actually possible */
1259 printk(KERN_ERR
1260 "nfsd_create: parent %s/%s not locked!\n",
1261 dentry->d_parent->d_name.name,
1262 dentry->d_name.name);
d75f2b9f 1263 err = nfserr_io;
1da177e4
LT
1264 goto out;
1265 }
1266 }
1267 /*
1268 * Make sure the child dentry is still negative ...
1269 */
1270 err = nfserr_exist;
1271 if (dchild->d_inode) {
1272 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1273 dentry->d_name.name, dchild->d_name.name);
1274 goto out;
1275 }
1276
1277 if (!(iap->ia_valid & ATTR_MODE))
1278 iap->ia_mode = 0;
1279 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1280
07cad1d2
MS
1281 err = nfserr_inval;
1282 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1283 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1284 type);
1285 goto out;
1286 }
1287
1288 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1289 if (host_err)
1290 goto out_nfserr;
1291
1da177e4
LT
1292 /*
1293 * Get the dir op function pointer.
1294 */
088406bc 1295 err = 0;
1da177e4
LT
1296 switch (type) {
1297 case S_IFREG:
6264d69d 1298 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
4ac35c2f 1299 if (!host_err)
1300 nfsd_check_ignore_resizing(iap);
1da177e4
LT
1301 break;
1302 case S_IFDIR:
6264d69d 1303 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
1da177e4
LT
1304 break;
1305 case S_IFCHR:
1306 case S_IFBLK:
1307 case S_IFIFO:
1308 case S_IFSOCK:
6264d69d 1309 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
1da177e4 1310 break;
1da177e4 1311 }
463c3197
DH
1312 if (host_err < 0) {
1313 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1da177e4 1314 goto out_nfserr;
463c3197 1315 }
1da177e4 1316
f501912a 1317 err = nfsd_create_setattr(rqstp, resfhp, iap);
1da177e4 1318
f501912a
BM
1319 /*
1320 * nfsd_setattr already committed the child. Transactional filesystems
1321 * had a chance to commit changes for both parent and child
1322 * simultaneously making the following commit_metadata a noop.
1323 */
1324 err2 = nfserrno(commit_metadata(fhp));
5c002b3b
BF
1325 if (err2)
1326 err = err2;
463c3197 1327 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1da177e4
LT
1328 /*
1329 * Update the file handle to get the new inode info.
1330 */
1331 if (!err)
1332 err = fh_update(resfhp);
1333out:
1334 if (dchild && !IS_ERR(dchild))
1335 dput(dchild);
1336 return err;
1337
1338out_nfserr:
6264d69d 1339 err = nfserrno(host_err);
1da177e4
LT
1340 goto out;
1341}
1342
1343#ifdef CONFIG_NFSD_V3
1344/*
1345 * NFSv3 version of nfsd_create
1346 */
6264d69d 1347__be32
1da177e4
LT
1348nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
1349 char *fname, int flen, struct iattr *iap,
1350 struct svc_fh *resfhp, int createmode, u32 *verifier,
81ac95c5 1351 int *truncp, int *created)
1da177e4
LT
1352{
1353 struct dentry *dentry, *dchild = NULL;
1354 struct inode *dirp;
6264d69d
AV
1355 __be32 err;
1356 int host_err;
1da177e4 1357 __u32 v_mtime=0, v_atime=0;
1da177e4
LT
1358
1359 err = nfserr_perm;
1360 if (!flen)
1361 goto out;
1362 err = nfserr_exist;
1363 if (isdotent(fname, flen))
1364 goto out;
1365 if (!(iap->ia_valid & ATTR_MODE))
1366 iap->ia_mode = 0;
8837abca 1367 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1368 if (err)
1369 goto out;
1370
1371 dentry = fhp->fh_dentry;
1372 dirp = dentry->d_inode;
1373
1374 /* Get all the sanity checks out of the way before
1375 * we lock the parent. */
1376 err = nfserr_notdir;
acfa4380 1377 if (!dirp->i_op->lookup)
1da177e4 1378 goto out;
12fd3520 1379 fh_lock_nested(fhp, I_MUTEX_PARENT);
1da177e4
LT
1380
1381 /*
1382 * Compose the response file handle.
1383 */
1384 dchild = lookup_one_len(fname, dentry, flen);
6264d69d 1385 host_err = PTR_ERR(dchild);
1da177e4
LT
1386 if (IS_ERR(dchild))
1387 goto out_nfserr;
1388
1389 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1390 if (err)
1391 goto out;
1392
1393 if (createmode == NFS3_CREATE_EXCLUSIVE) {
c397852c 1394 /* solaris7 gets confused (bugid 4218508) if these have
749997e5
JL
1395 * the high bit set, so just clear the high bits. If this is
1396 * ever changed to use different attrs for storing the
1397 * verifier, then do_open_lookup() will also need to be fixed
1398 * accordingly.
1da177e4
LT
1399 */
1400 v_mtime = verifier[0]&0x7fffffff;
1401 v_atime = verifier[1]&0x7fffffff;
1da177e4
LT
1402 }
1403
463c3197
DH
1404 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1405 if (host_err)
1406 goto out_nfserr;
1da177e4
LT
1407 if (dchild->d_inode) {
1408 err = 0;
1409
1410 switch (createmode) {
1411 case NFS3_CREATE_UNCHECKED:
1412 if (! S_ISREG(dchild->d_inode->i_mode))
1413 err = nfserr_exist;
1414 else if (truncp) {
1415 /* in nfsv4, we need to treat this case a little
1416 * differently. we don't want to truncate the
1417 * file now; this would be wrong if the OPEN
1418 * fails for some other reason. furthermore,
1419 * if the size is nonzero, we should ignore it
1420 * according to spec!
1421 */
1422 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1423 }
1424 else {
1425 iap->ia_valid &= ATTR_SIZE;
1426 goto set_attr;
1427 }
1428 break;
1429 case NFS3_CREATE_EXCLUSIVE:
1430 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1431 && dchild->d_inode->i_atime.tv_sec == v_atime
1da177e4
LT
1432 && dchild->d_inode->i_size == 0 )
1433 break;
1434 /* fallthru */
1435 case NFS3_CREATE_GUARDED:
1436 err = nfserr_exist;
1437 }
463c3197 1438 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1da177e4
LT
1439 goto out;
1440 }
1441
6264d69d 1442 host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
463c3197
DH
1443 if (host_err < 0) {
1444 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1da177e4 1445 goto out_nfserr;
463c3197 1446 }
81ac95c5
BF
1447 if (created)
1448 *created = 1;
1da177e4 1449
4ac35c2f 1450 nfsd_check_ignore_resizing(iap);
1451
1da177e4 1452 if (createmode == NFS3_CREATE_EXCLUSIVE) {
c397852c 1453 /* Cram the verifier into atime/mtime */
1da177e4 1454 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
c397852c 1455 | ATTR_MTIME_SET|ATTR_ATIME_SET;
1da177e4
LT
1456 /* XXX someone who knows this better please fix it for nsec */
1457 iap->ia_mtime.tv_sec = v_mtime;
1458 iap->ia_atime.tv_sec = v_atime;
1459 iap->ia_mtime.tv_nsec = 0;
1460 iap->ia_atime.tv_nsec = 0;
1da177e4
LT
1461 }
1462
1da177e4 1463 set_attr:
f501912a
BM
1464 err = nfsd_create_setattr(rqstp, resfhp, iap);
1465
1466 /*
1467 * nfsd_setattr already committed the child (and possibly also the parent).
1468 */
1469 if (!err)
1470 err = nfserrno(commit_metadata(fhp));
f193fbab 1471
463c3197 1472 mnt_drop_write(fhp->fh_export->ex_path.mnt);
f193fbab
YT
1473 /*
1474 * Update the filehandle to get the new inode info.
1475 */
1476 if (!err)
1477 err = fh_update(resfhp);
1da177e4
LT
1478
1479 out:
1480 fh_unlock(fhp);
1481 if (dchild && !IS_ERR(dchild))
1482 dput(dchild);
1483 return err;
1484
1485 out_nfserr:
6264d69d 1486 err = nfserrno(host_err);
1da177e4
LT
1487 goto out;
1488}
1489#endif /* CONFIG_NFSD_V3 */
1490
1491/*
1492 * Read a symlink. On entry, *lenp must contain the maximum path length that
1493 * fits into the buffer. On return, it contains the true length.
1494 * N.B. After this call fhp needs an fh_put
1495 */
6264d69d 1496__be32
1da177e4
LT
1497nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1498{
1499 struct dentry *dentry;
1500 struct inode *inode;
1501 mm_segment_t oldfs;
6264d69d
AV
1502 __be32 err;
1503 int host_err;
1da177e4 1504
8837abca 1505 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
1da177e4
LT
1506 if (err)
1507 goto out;
1508
1509 dentry = fhp->fh_dentry;
1510 inode = dentry->d_inode;
1511
1512 err = nfserr_inval;
acfa4380 1513 if (!inode->i_op->readlink)
1da177e4
LT
1514 goto out;
1515
54775491 1516 touch_atime(fhp->fh_export->ex_path.mnt, dentry);
1da177e4
LT
1517 /* N.B. Why does this call need a get_fs()??
1518 * Remove the set_fs and watch the fireworks:-) --okir
1519 */
1520
1521 oldfs = get_fs(); set_fs(KERNEL_DS);
6264d69d 1522 host_err = inode->i_op->readlink(dentry, buf, *lenp);
1da177e4
LT
1523 set_fs(oldfs);
1524
6264d69d 1525 if (host_err < 0)
1da177e4 1526 goto out_nfserr;
6264d69d 1527 *lenp = host_err;
1da177e4
LT
1528 err = 0;
1529out:
1530 return err;
1531
1532out_nfserr:
6264d69d 1533 err = nfserrno(host_err);
1da177e4
LT
1534 goto out;
1535}
1536
1537/*
1538 * Create a symlink and look up its inode
1539 * N.B. After this call _both_ fhp and resfhp need an fh_put
1540 */
6264d69d 1541__be32
1da177e4
LT
1542nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1543 char *fname, int flen,
1544 char *path, int plen,
1545 struct svc_fh *resfhp,
1546 struct iattr *iap)
1547{
1548 struct dentry *dentry, *dnew;
6264d69d
AV
1549 __be32 err, cerr;
1550 int host_err;
1da177e4
LT
1551
1552 err = nfserr_noent;
1553 if (!flen || !plen)
1554 goto out;
1555 err = nfserr_exist;
1556 if (isdotent(fname, flen))
1557 goto out;
1558
8837abca 1559 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1560 if (err)
1561 goto out;
1562 fh_lock(fhp);
1563 dentry = fhp->fh_dentry;
1564 dnew = lookup_one_len(fname, dentry, flen);
6264d69d 1565 host_err = PTR_ERR(dnew);
1da177e4
LT
1566 if (IS_ERR(dnew))
1567 goto out_nfserr;
1568
75c3f29d
DH
1569 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1570 if (host_err)
1571 goto out_nfserr;
1572
1da177e4
LT
1573 if (unlikely(path[plen] != 0)) {
1574 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1575 if (path_alloced == NULL)
6264d69d 1576 host_err = -ENOMEM;
1da177e4
LT
1577 else {
1578 strncpy(path_alloced, path, plen);
1579 path_alloced[plen] = 0;
db2e747b 1580 host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
1da177e4
LT
1581 kfree(path_alloced);
1582 }
1583 } else
db2e747b 1584 host_err = vfs_symlink(dentry->d_inode, dnew, path);
6264d69d 1585 err = nfserrno(host_err);
f501912a
BM
1586 if (!err)
1587 err = nfserrno(commit_metadata(fhp));
1da177e4
LT
1588 fh_unlock(fhp);
1589
75c3f29d
DH
1590 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1591
1da177e4
LT
1592 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1593 dput(dnew);
1594 if (err==0) err = cerr;
1595out:
1596 return err;
1597
1598out_nfserr:
6264d69d 1599 err = nfserrno(host_err);
1da177e4
LT
1600 goto out;
1601}
1602
1603/*
1604 * Create a hardlink
1605 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1606 */
6264d69d 1607__be32
1da177e4
LT
1608nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1609 char *name, int len, struct svc_fh *tfhp)
1610{
1611 struct dentry *ddir, *dnew, *dold;
55b13354 1612 struct inode *dirp;
6264d69d
AV
1613 __be32 err;
1614 int host_err;
1da177e4 1615
8837abca 1616 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1617 if (err)
1618 goto out;
8837abca 1619 err = fh_verify(rqstp, tfhp, -S_IFDIR, NFSD_MAY_NOP);
1da177e4
LT
1620 if (err)
1621 goto out;
1622
1623 err = nfserr_perm;
1624 if (!len)
1625 goto out;
1626 err = nfserr_exist;
1627 if (isdotent(name, len))
1628 goto out;
1629
12fd3520 1630 fh_lock_nested(ffhp, I_MUTEX_PARENT);
1da177e4
LT
1631 ddir = ffhp->fh_dentry;
1632 dirp = ddir->d_inode;
1633
1634 dnew = lookup_one_len(name, ddir, len);
6264d69d 1635 host_err = PTR_ERR(dnew);
1da177e4
LT
1636 if (IS_ERR(dnew))
1637 goto out_nfserr;
1638
1639 dold = tfhp->fh_dentry;
1da177e4 1640
75c3f29d
DH
1641 host_err = mnt_want_write(tfhp->fh_export->ex_path.mnt);
1642 if (host_err) {
1643 err = nfserrno(host_err);
1644 goto out_dput;
1645 }
6264d69d
AV
1646 host_err = vfs_link(dold, dirp, dnew);
1647 if (!host_err) {
f501912a
BM
1648 err = nfserrno(commit_metadata(ffhp));
1649 if (!err)
1650 err = nfserrno(commit_metadata(tfhp));
1da177e4 1651 } else {
6264d69d 1652 if (host_err == -EXDEV && rqstp->rq_vers == 2)
1da177e4
LT
1653 err = nfserr_acces;
1654 else
6264d69d 1655 err = nfserrno(host_err);
1da177e4 1656 }
75c3f29d
DH
1657 mnt_drop_write(tfhp->fh_export->ex_path.mnt);
1658out_dput:
1da177e4 1659 dput(dnew);
270d56e5
DR
1660out_unlock:
1661 fh_unlock(ffhp);
1da177e4
LT
1662out:
1663 return err;
1664
1665out_nfserr:
6264d69d 1666 err = nfserrno(host_err);
270d56e5 1667 goto out_unlock;
1da177e4
LT
1668}
1669
1670/*
1671 * Rename a file
1672 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1673 */
6264d69d 1674__be32
1da177e4
LT
1675nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1676 struct svc_fh *tfhp, char *tname, int tlen)
1677{
1678 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1679 struct inode *fdir, *tdir;
6264d69d
AV
1680 __be32 err;
1681 int host_err;
1da177e4 1682
8837abca 1683 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
1da177e4
LT
1684 if (err)
1685 goto out;
8837abca 1686 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1687 if (err)
1688 goto out;
1689
1690 fdentry = ffhp->fh_dentry;
1691 fdir = fdentry->d_inode;
1692
1693 tdentry = tfhp->fh_dentry;
1694 tdir = tdentry->d_inode;
1695
1696 err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
a56f3937 1697 if (ffhp->fh_export != tfhp->fh_export)
1da177e4
LT
1698 goto out;
1699
1700 err = nfserr_perm;
1701 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1702 goto out;
1703
1704 /* cannot use fh_lock as we need deadlock protective ordering
1705 * so do it by hand */
1706 trap = lock_rename(tdentry, fdentry);
1707 ffhp->fh_locked = tfhp->fh_locked = 1;
1708 fill_pre_wcc(ffhp);
1709 fill_pre_wcc(tfhp);
1710
1711 odentry = lookup_one_len(fname, fdentry, flen);
6264d69d 1712 host_err = PTR_ERR(odentry);
1da177e4
LT
1713 if (IS_ERR(odentry))
1714 goto out_nfserr;
1715
6264d69d 1716 host_err = -ENOENT;
1da177e4
LT
1717 if (!odentry->d_inode)
1718 goto out_dput_old;
6264d69d 1719 host_err = -EINVAL;
1da177e4
LT
1720 if (odentry == trap)
1721 goto out_dput_old;
1722
1723 ndentry = lookup_one_len(tname, tdentry, tlen);
6264d69d 1724 host_err = PTR_ERR(ndentry);
1da177e4
LT
1725 if (IS_ERR(ndentry))
1726 goto out_dput_old;
6264d69d 1727 host_err = -ENOTEMPTY;
1da177e4
LT
1728 if (ndentry == trap)
1729 goto out_dput_new;
1730
9079b1eb
DH
1731 host_err = -EXDEV;
1732 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1733 goto out_dput_new;
1734 host_err = mnt_want_write(ffhp->fh_export->ex_path.mnt);
1735 if (host_err)
1736 goto out_dput_new;
1737
6264d69d 1738 host_err = vfs_rename(fdir, odentry, tdir, ndentry);
f501912a
BM
1739 if (!host_err) {
1740 host_err = commit_metadata(tfhp);
6264d69d 1741 if (!host_err)
f501912a 1742 host_err = commit_metadata(ffhp);
1da177e4
LT
1743 }
1744
9079b1eb
DH
1745 mnt_drop_write(ffhp->fh_export->ex_path.mnt);
1746
1da177e4
LT
1747 out_dput_new:
1748 dput(ndentry);
1749 out_dput_old:
1750 dput(odentry);
1751 out_nfserr:
6264d69d 1752 err = nfserrno(host_err);
1da177e4
LT
1753
1754 /* we cannot reply on fh_unlock on the two filehandles,
1755 * as that would do the wrong thing if the two directories
1756 * were the same, so again we do it by hand
1757 */
1758 fill_post_wcc(ffhp);
1759 fill_post_wcc(tfhp);
1760 unlock_rename(tdentry, fdentry);
1761 ffhp->fh_locked = tfhp->fh_locked = 0;
1762
1763out:
1764 return err;
1765}
1766
1767/*
1768 * Unlink a file or directory
1769 * N.B. After this call fhp needs an fh_put
1770 */
6264d69d 1771__be32
1da177e4
LT
1772nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1773 char *fname, int flen)
1774{
1775 struct dentry *dentry, *rdentry;
1776 struct inode *dirp;
6264d69d
AV
1777 __be32 err;
1778 int host_err;
1da177e4
LT
1779
1780 err = nfserr_acces;
1781 if (!flen || isdotent(fname, flen))
1782 goto out;
8837abca 1783 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
1da177e4
LT
1784 if (err)
1785 goto out;
1786
12fd3520 1787 fh_lock_nested(fhp, I_MUTEX_PARENT);
1da177e4
LT
1788 dentry = fhp->fh_dentry;
1789 dirp = dentry->d_inode;
1790
1791 rdentry = lookup_one_len(fname, dentry, flen);
6264d69d 1792 host_err = PTR_ERR(rdentry);
1da177e4
LT
1793 if (IS_ERR(rdentry))
1794 goto out_nfserr;
1795
1796 if (!rdentry->d_inode) {
1797 dput(rdentry);
1798 err = nfserr_noent;
1799 goto out;
1800 }
1801
1802 if (!type)
1803 type = rdentry->d_inode->i_mode & S_IFMT;
1804
0622753b
DH
1805 host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
1806 if (host_err)
1807 goto out_nfserr;
1808
9ce137ee 1809 if (type != S_IFDIR)
6264d69d 1810 host_err = vfs_unlink(dirp, rdentry);
9ce137ee 1811 else
6264d69d 1812 host_err = vfs_rmdir(dirp, rdentry);
1da177e4
LT
1813
1814 dput(rdentry);
1815
f501912a
BM
1816 if (!host_err)
1817 host_err = commit_metadata(fhp);
1da177e4 1818
0622753b 1819 mnt_drop_write(fhp->fh_export->ex_path.mnt);
1da177e4 1820out_nfserr:
6264d69d 1821 err = nfserrno(host_err);
f193fbab
YT
1822out:
1823 return err;
1da177e4
LT
1824}
1825
14f7dd63
DW
1826/*
1827 * We do this buffering because we must not call back into the file
1828 * system's ->lookup() method from the filldir callback. That may well
1829 * deadlock a number of file systems.
1830 *
1831 * This is based heavily on the implementation of same in XFS.
1832 */
1833struct buffered_dirent {
1834 u64 ino;
1835 loff_t offset;
1836 int namlen;
1837 unsigned int d_type;
1838 char name[];
1839};
1840
1841struct readdir_data {
1842 char *dirent;
1843 size_t used;
53c9c5c0 1844 int full;
14f7dd63
DW
1845};
1846
1847static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
1848 loff_t offset, u64 ino, unsigned int d_type)
1849{
1850 struct readdir_data *buf = __buf;
1851 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1852 unsigned int reclen;
1853
1854 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
53c9c5c0
AV
1855 if (buf->used + reclen > PAGE_SIZE) {
1856 buf->full = 1;
14f7dd63 1857 return -EINVAL;
53c9c5c0 1858 }
14f7dd63
DW
1859
1860 de->namlen = namlen;
1861 de->offset = offset;
1862 de->ino = ino;
1863 de->d_type = d_type;
1864 memcpy(de->name, name, namlen);
1865 buf->used += reclen;
1866
1867 return 0;
1868}
1869
2f9092e1
DW
1870static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
1871 struct readdir_cd *cdp, loff_t *offsetp)
2628b766 1872{
14f7dd63
DW
1873 struct readdir_data buf;
1874 struct buffered_dirent *de;
2628b766 1875 int host_err;
14f7dd63
DW
1876 int size;
1877 loff_t offset;
2628b766 1878
14f7dd63
DW
1879 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
1880 if (!buf.dirent)
2f9092e1 1881 return nfserrno(-ENOMEM);
14f7dd63
DW
1882
1883 offset = *offsetp;
2628b766 1884
14f7dd63 1885 while (1) {
2f9092e1 1886 struct inode *dir_inode = file->f_path.dentry->d_inode;
14f7dd63
DW
1887 unsigned int reclen;
1888
b726e923 1889 cdp->err = nfserr_eof; /* will be cleared on successful read */
14f7dd63 1890 buf.used = 0;
53c9c5c0 1891 buf.full = 0;
14f7dd63
DW
1892
1893 host_err = vfs_readdir(file, nfsd_buffered_filldir, &buf);
53c9c5c0
AV
1894 if (buf.full)
1895 host_err = 0;
1896
1897 if (host_err < 0)
14f7dd63
DW
1898 break;
1899
1900 size = buf.used;
1901
1902 if (!size)
1903 break;
1904
2f9092e1
DW
1905 /*
1906 * Various filldir functions may end up calling back into
1907 * lookup_one_len() and the file system's ->lookup() method.
1908 * These expect i_mutex to be held, as it would within readdir.
1909 */
1910 host_err = mutex_lock_killable(&dir_inode->i_mutex);
1911 if (host_err)
1912 break;
1913
14f7dd63
DW
1914 de = (struct buffered_dirent *)buf.dirent;
1915 while (size > 0) {
1916 offset = de->offset;
1917
1918 if (func(cdp, de->name, de->namlen, de->offset,
1919 de->ino, de->d_type))
2f9092e1 1920 break;
14f7dd63
DW
1921
1922 if (cdp->err != nfs_ok)
2f9092e1 1923 break;
14f7dd63
DW
1924
1925 reclen = ALIGN(sizeof(*de) + de->namlen,
1926 sizeof(u64));
1927 size -= reclen;
1928 de = (struct buffered_dirent *)((char *)de + reclen);
1929 }
2f9092e1
DW
1930 mutex_unlock(&dir_inode->i_mutex);
1931 if (size > 0) /* We bailed out early */
1932 break;
1933
c002a6c7 1934 offset = vfs_llseek(file, 0, SEEK_CUR);
14f7dd63
DW
1935 }
1936
14f7dd63 1937 free_page((unsigned long)(buf.dirent));
2628b766
DW
1938
1939 if (host_err)
1940 return nfserrno(host_err);
14f7dd63
DW
1941
1942 *offsetp = offset;
1943 return cdp->err;
2628b766
DW
1944}
1945
1da177e4
LT
1946/*
1947 * Read entries from a directory.
1948 * The NFSv3/4 verifier we ignore for now.
1949 */
6264d69d 1950__be32
1da177e4 1951nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
a0ad13ef 1952 struct readdir_cd *cdp, filldir_t func)
1da177e4 1953{
6264d69d 1954 __be32 err;
1da177e4
LT
1955 struct file *file;
1956 loff_t offset = *offsetp;
1957
8837abca 1958 err = nfsd_open(rqstp, fhp, S_IFDIR, NFSD_MAY_READ, &file);
1da177e4
LT
1959 if (err)
1960 goto out;
1961
1962 offset = vfs_llseek(file, offset, 0);
1963 if (offset < 0) {
1964 err = nfserrno((int)offset);
1965 goto out_close;
1966 }
1967
14f7dd63 1968 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
1da177e4
LT
1969
1970 if (err == nfserr_eof || err == nfserr_toosmall)
1971 err = nfs_ok; /* can still be found in ->err */
1972out_close:
1973 nfsd_close(file);
1974out:
1975 return err;
1976}
1977
1978/*
1979 * Get file system stats
1980 * N.B. After this call fhp needs an fh_put
1981 */
6264d69d 1982__be32
04716e66 1983nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
1da177e4 1984{
ebabe9a9
CH
1985 __be32 err;
1986
1987 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
f6360efb
TI
1988 if (!err) {
1989 struct path path = {
1990 .mnt = fhp->fh_export->ex_path.mnt,
1991 .dentry = fhp->fh_dentry,
1992 };
1993 if (vfs_statfs(&path, stat))
1994 err = nfserr_io;
1995 }
1da177e4
LT
1996 return err;
1997}
1998
c7d51402 1999static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
e22841c6 2000{
c7d51402 2001 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
e22841c6
BF
2002}
2003
1da177e4
LT
2004/*
2005 * Check for a user's access permissions to this inode.
2006 */
6264d69d 2007__be32
0ec757df
BF
2008nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2009 struct dentry *dentry, int acc)
1da177e4
LT
2010{
2011 struct inode *inode = dentry->d_inode;
2012 int err;
2013
8837abca 2014 if (acc == NFSD_MAY_NOP)
1da177e4
LT
2015 return 0;
2016#if 0
2017 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2018 acc,
8837abca
MS
2019 (acc & NFSD_MAY_READ)? " read" : "",
2020 (acc & NFSD_MAY_WRITE)? " write" : "",
2021 (acc & NFSD_MAY_EXEC)? " exec" : "",
2022 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2023 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2024 (acc & NFSD_MAY_LOCK)? " lock" : "",
2025 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
1da177e4
LT
2026 inode->i_mode,
2027 IS_IMMUTABLE(inode)? " immut" : "",
2028 IS_APPEND(inode)? " append" : "",
2c463e95 2029 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
1da177e4 2030 dprintk(" owner %d/%d user %d/%d\n",
5cc0a840 2031 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
1da177e4
LT
2032#endif
2033
2034 /* Normally we reject any write/sattr etc access on a read-only file
2035 * system. But if it is IRIX doing check on write-access for a
2036 * device special file, we ignore rofs.
2037 */
8837abca
MS
2038 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2039 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
2c463e95
DH
2040 if (exp_rdonly(rqstp, exp) ||
2041 __mnt_is_readonly(exp->ex_path.mnt))
1da177e4 2042 return nfserr_rofs;
8837abca 2043 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
1da177e4
LT
2044 return nfserr_perm;
2045 }
8837abca 2046 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
1da177e4
LT
2047 return nfserr_perm;
2048
8837abca 2049 if (acc & NFSD_MAY_LOCK) {
1da177e4
LT
2050 /* If we cannot rely on authentication in NLM requests,
2051 * just allow locks, otherwise require read permission, or
2052 * ownership
2053 */
2054 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2055 return 0;
2056 else
8837abca 2057 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
1da177e4
LT
2058 }
2059 /*
2060 * The file owner always gets access permission for accesses that
2061 * would normally be checked at open time. This is to make
2062 * file access work even when the client has done a fchmod(fd, 0).
2063 *
2064 * However, `cp foo bar' should fail nevertheless when bar is
2065 * readonly. A sensible way to do this might be to reject all
2066 * attempts to truncate a read-only file, because a creat() call
2067 * always implies file truncation.
2068 * ... but this isn't really fair. A process may reasonably call
2069 * ftruncate on an open file descriptor on a file with perm 000.
2070 * We must trust the client to do permission checking - using "ACCESS"
2071 * with NFSv3.
2072 */
8837abca 2073 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
5cc0a840 2074 inode->i_uid == current_fsuid())
1da177e4
LT
2075 return 0;
2076
8837abca 2077 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
f419a2e3 2078 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
1da177e4
LT
2079
2080 /* Allow read access to binaries even when mode 111 */
2081 if (err == -EACCES && S_ISREG(inode->i_mode) &&
8837abca 2082 acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE))
f419a2e3 2083 err = inode_permission(inode, MAY_EXEC);
1da177e4
LT
2084
2085 return err? nfserrno(err) : 0;
2086}
2087
2088void
2089nfsd_racache_shutdown(void)
2090{
54a66e54
JL
2091 struct raparms *raparm, *last_raparm;
2092 unsigned int i;
2093
1da177e4 2094 dprintk("nfsd: freeing readahead buffers.\n");
54a66e54
JL
2095
2096 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2097 raparm = raparm_hash[i].pb_head;
2098 while(raparm) {
2099 last_raparm = raparm;
2100 raparm = raparm->p_next;
2101 kfree(last_raparm);
2102 }
2103 raparm_hash[i].pb_head = NULL;
2104 }
1da177e4
LT
2105}
2106/*
2107 * Initialize readahead param cache
2108 */
2109int
2110nfsd_racache_init(int cache_size)
2111{
2112 int i;
fce1456a
GB
2113 int j = 0;
2114 int nperbucket;
54a66e54 2115 struct raparms **raparm = NULL;
1da177e4 2116
fce1456a 2117
54a66e54 2118 if (raparm_hash[0].pb_head)
1da177e4 2119 return 0;
54a66e54
JL
2120 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
2121 if (nperbucket < 2)
2122 nperbucket = 2;
2123 cache_size = nperbucket * RAPARM_HASH_SIZE;
4b3bb06b
YB
2124
2125 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
54a66e54
JL
2126
2127 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
4b3bb06b 2128 spin_lock_init(&raparm_hash[i].pb_lock);
54a66e54
JL
2129
2130 raparm = &raparm_hash[i].pb_head;
2131 for (j = 0; j < nperbucket; j++) {
2132 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2133 if (!*raparm)
2134 goto out_nomem;
2135 raparm = &(*raparm)->p_next;
2136 }
2137 *raparm = NULL;
4b3bb06b
YB
2138 }
2139
1da177e4
LT
2140 nfsdstats.ra_size = cache_size;
2141 return 0;
54a66e54
JL
2142
2143out_nomem:
2144 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2145 nfsd_racache_shutdown();
2146 return -ENOMEM;
1da177e4 2147}
a257cdd0
AG
2148
2149#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
2150struct posix_acl *
2151nfsd_get_posix_acl(struct svc_fh *fhp, int type)
2152{
2153 struct inode *inode = fhp->fh_dentry->d_inode;
2154 char *name;
2155 void *value = NULL;
2156 ssize_t size;
2157 struct posix_acl *acl;
2158
5be196e5
CH
2159 if (!IS_POSIXACL(inode))
2160 return ERR_PTR(-EOPNOTSUPP);
2161
2162 switch (type) {
2163 case ACL_TYPE_ACCESS:
2164 name = POSIX_ACL_XATTR_ACCESS;
2165 break;
2166 case ACL_TYPE_DEFAULT:
2167 name = POSIX_ACL_XATTR_DEFAULT;
2168 break;
2169 default:
a257cdd0 2170 return ERR_PTR(-EOPNOTSUPP);
a257cdd0
AG
2171 }
2172
5be196e5
CH
2173 size = nfsd_getxattr(fhp->fh_dentry, name, &value);
2174 if (size < 0)
2175 return ERR_PTR(size);
a257cdd0 2176
a257cdd0 2177 acl = posix_acl_from_xattr(value, size);
a257cdd0
AG
2178 kfree(value);
2179 return acl;
2180}
2181
2182int
2183nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
2184{
2185 struct inode *inode = fhp->fh_dentry->d_inode;
2186 char *name;
2187 void *value = NULL;
2188 size_t size;
2189 int error;
2190
acfa4380 2191 if (!IS_POSIXACL(inode) ||
a257cdd0
AG
2192 !inode->i_op->setxattr || !inode->i_op->removexattr)
2193 return -EOPNOTSUPP;
2194 switch(type) {
2195 case ACL_TYPE_ACCESS:
334a13ec 2196 name = POSIX_ACL_XATTR_ACCESS;
a257cdd0
AG
2197 break;
2198 case ACL_TYPE_DEFAULT:
334a13ec 2199 name = POSIX_ACL_XATTR_DEFAULT;
a257cdd0
AG
2200 break;
2201 default:
2202 return -EOPNOTSUPP;
2203 }
2204
2205 if (acl && acl->a_count) {
334a13ec 2206 size = posix_acl_xattr_size(acl->a_count);
a257cdd0
AG
2207 value = kmalloc(size, GFP_KERNEL);
2208 if (!value)
2209 return -ENOMEM;
9ccfc29c
FM
2210 error = posix_acl_to_xattr(acl, value, size);
2211 if (error < 0)
a257cdd0 2212 goto getout;
9ccfc29c 2213 size = error;
a257cdd0
AG
2214 } else
2215 size = 0;
2216
18f335af
DH
2217 error = mnt_want_write(fhp->fh_export->ex_path.mnt);
2218 if (error)
2219 goto getout;
a257cdd0 2220 if (size)
5be196e5 2221 error = vfs_setxattr(fhp->fh_dentry, name, value, size, 0);
a257cdd0
AG
2222 else {
2223 if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
2224 error = 0;
2225 else {
5be196e5 2226 error = vfs_removexattr(fhp->fh_dentry, name);
a257cdd0
AG
2227 if (error == -ENODATA)
2228 error = 0;
2229 }
2230 }
18f335af 2231 mnt_drop_write(fhp->fh_export->ex_path.mnt);
a257cdd0
AG
2232
2233getout:
2234 kfree(value);
2235 return error;
2236}
2237#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */
This page took 0.623811 seconds and 5 git commands to generate.