vfs.c 53.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#define MSNFS	/* HACK HACK */
/*
 * File operations used by nfsd. Some of these have been ripped from
 * other parts of the kernel because they weren't exported, others
 * are partial duplicates with added or changed functionality.
 *
 * Note that several functions dget() the dentry upon which they want
 * to act, most notably those that create directory entries. Response
 * dentry's are dput()'d if necessary in the release callback.
 * So if you notice code paths that apparently fail to dput() the
 * dentry, don't worry--they have been taken care of.
 *
 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
 */

#include <linux/fs.h>
#include <linux/file.h>
19
#include <linux/splice.h>
L
Linus Torvalds 已提交
20 21 22 23
#include <linux/fcntl.h>
#include <linux/namei.h>
#include <linux/delay.h>
#include <linux/quotaops.h>
R
Robert Love 已提交
24
#include <linux/fsnotify.h>
L
Linus Torvalds 已提交
25 26
#include <linux/posix_acl_xattr.h>
#include <linux/xattr.h>
27 28 29 30 31 32 33 34
#include <linux/jhash.h>
#include <linux/ima.h>
#include <asm/uaccess.h>

#ifdef CONFIG_NFSD_V3
#include "xdr3.h"
#endif /* CONFIG_NFSD_V3 */

35
#ifdef CONFIG_NFSD_V4
L
Linus Torvalds 已提交
36 37 38 39
#include <linux/nfs4_acl.h>
#include <linux/nfsd_idmap.h>
#endif /* CONFIG_NFSD_V4 */

40 41
#include "nfsd.h"
#include "vfs.h"
L
Linus Torvalds 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

#define NFSDDBG_FACILITY		NFSDDBG_FILEOP


/*
 * This is a cache of readahead params that help us choose the proper
 * readahead strategy. Initially, we set all readahead parameters to 0
 * and let the VFS handle things.
 * If you increase the number of cached files very much, you'll need to
 * add a hash table here.
 */
struct raparms {
	struct raparms		*p_next;
	unsigned int		p_count;
	ino_t			p_ino;
	dev_t			p_dev;
	int			p_set;
	struct file_ra_state	p_ra;
60
	unsigned int		p_hindex;
L
Linus Torvalds 已提交
61 62
};

63 64 65 66 67 68 69 70 71
struct raparm_hbucket {
	struct raparms		*pb_head;
	spinlock_t		pb_lock;
} ____cacheline_aligned_in_smp;

#define RAPARM_HASH_BITS	4
#define RAPARM_HASH_SIZE	(1<<RAPARM_HASH_BITS)
#define RAPARM_HASH_MASK	(RAPARM_HASH_SIZE-1)
static struct raparm_hbucket	raparm_hash[RAPARM_HASH_SIZE];
L
Linus Torvalds 已提交
72 73 74 75

/* 
 * Called from nfsd_lookup and encode_dirent. Check if we have crossed 
 * a mount point.
76
 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84
 *  or nfs_ok having possibly changed *dpp and *expp
 */
int
nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp, 
		        struct svc_export **expp)
{
	struct svc_export *exp = *expp, *exp2 = NULL;
	struct dentry *dentry = *dpp;
A
Al Viro 已提交
85 86
	struct path path = {.mnt = mntget(exp->ex_path.mnt),
			    .dentry = dget(dentry)};
87
	int err = 0;
L
Linus Torvalds 已提交
88

A
Al Viro 已提交
89
	while (d_mountpoint(path.dentry) && follow_down(&path))
A
Al Viro 已提交
90
		;
L
Linus Torvalds 已提交
91

A
Al Viro 已提交
92
	exp2 = rqst_exp_get_by_name(rqstp, &path);
L
Linus Torvalds 已提交
93
	if (IS_ERR(exp2)) {
94 95 96 97 98 99 100 101 102 103
		err = PTR_ERR(exp2);
		/*
		 * We normally allow NFS clients to continue
		 * "underneath" a mountpoint that is not exported.
		 * The exception is V4ROOT, where no traversal is ever
		 * allowed without an explicit export of the new
		 * directory.
		 */
		if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
			err = 0;
A
Al Viro 已提交
104
		path_put(&path);
L
Linus Torvalds 已提交
105 106
		goto out;
	}
107 108
	if (nfsd_v4client(rqstp) ||
		(exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
L
Linus Torvalds 已提交
109
		/* successfully crossed mount point */
A
Al Viro 已提交
110
		/*
A
Al Viro 已提交
111 112 113 114
		 * This is subtle: path.dentry is *not* on path.mnt
		 * at this point.  The only reason we are safe is that
		 * original mnt is pinned down by exp, so we should
		 * put path *before* putting exp
A
Al Viro 已提交
115
		 */
A
Al Viro 已提交
116 117
		*dpp = path.dentry;
		path.dentry = dentry;
A
Al Viro 已提交
118
		*expp = exp2;
A
Al Viro 已提交
119
		exp2 = exp;
L
Linus Torvalds 已提交
120
	}
A
Al Viro 已提交
121 122
	path_put(&path);
	exp_put(exp2);
L
Linus Torvalds 已提交
123 124 125 126
out:
	return err;
}

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
static void follow_to_parent(struct path *path)
{
	struct dentry *dp;

	while (path->dentry == path->mnt->mnt_root && follow_up(path))
		;
	dp = dget_parent(path->dentry);
	dput(path->dentry);
	path->dentry = dp;
}

static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
{
	struct svc_export *exp2;
	struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
			    .dentry = dget(dparent)};

	follow_to_parent(&path);

	exp2 = rqst_exp_parent(rqstp, &path);
	if (PTR_ERR(exp2) == -ENOENT) {
		*dentryp = dget(dparent);
	} else if (IS_ERR(exp2)) {
		path_put(&path);
		return PTR_ERR(exp2);
	} else {
		*dentryp = dget(path.dentry);
		exp_put(*exp);
		*exp = exp2;
	}
	path_put(&path);
	return 0;
}

161 162 163 164
/*
 * For nfsd purposes, we treat V4ROOT exports as though there was an
 * export at *every* directory.
 */
165
int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
166 167 168 169 170 171 172 173
{
	if (d_mountpoint(dentry))
		return 1;
	if (!(exp->ex_flags & NFSEXP_V4ROOT))
		return 0;
	return dentry->d_inode != NULL;
}

174
__be32
175
nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
176
		   const char *name, unsigned int len,
177
		   struct svc_export **exp_ret, struct dentry **dentry_ret)
L
Linus Torvalds 已提交
178 179 180 181
{
	struct svc_export	*exp;
	struct dentry		*dparent;
	struct dentry		*dentry;
182 183
	__be32			err;
	int			host_err;
L
Linus Torvalds 已提交
184 185 186 187

	dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);

	/* Obtain dentry and export. */
M
Miklos Szeredi 已提交
188
	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
L
Linus Torvalds 已提交
189 190 191 192 193 194 195 196 197 198 199
	if (err)
		return err;

	dparent = fhp->fh_dentry;
	exp  = fhp->fh_export;
	exp_get(exp);

	/* Lookup the name, but don't follow links */
	if (isdotent(name, len)) {
		if (len==1)
			dentry = dget(dparent);
200
		else if (dparent != exp->ex_path.dentry)
L
Linus Torvalds 已提交
201
			dentry = dget_parent(dparent);
202
		else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
L
Linus Torvalds 已提交
203 204 205
			dentry = dget(dparent); /* .. == . just like at / */
		else {
			/* checking mountpoint crossing is very different when stepping up */
206 207
			host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
			if (host_err)
L
Linus Torvalds 已提交
208 209 210 211 212
				goto out_nfserr;
		}
	} else {
		fh_lock(fhp);
		dentry = lookup_one_len(name, dparent, len);
213
		host_err = PTR_ERR(dentry);
L
Linus Torvalds 已提交
214 215 216 217 218
		if (IS_ERR(dentry))
			goto out_nfserr;
		/*
		 * check if we have crossed a mount point ...
		 */
219
		if (nfsd_mountpoint(dentry, exp)) {
220
			if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
L
Linus Torvalds 已提交
221 222 223 224 225
				dput(dentry);
				goto out_nfserr;
			}
		}
	}
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
	*dentry_ret = dentry;
	*exp_ret = exp;
	return 0;

out_nfserr:
	exp_put(exp);
	return nfserrno(host_err);
}

/*
 * Look up one component of a pathname.
 * N.B. After this call _both_ fhp and resfh need an fh_put
 *
 * If the lookup would cross a mountpoint, and the mounted filesystem
 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
 * accepted as it stands and the mounted directory is
 * returned. Otherwise the covered directory is returned.
 * NOTE: this mountpoint crossing is not supported properly by all
 *   clients and is explicitly disallowed for NFSv3
 *      NeilBrown <neilb@cse.unsw.edu.au>
 */
__be32
nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
249
				unsigned int len, struct svc_fh *resfh)
250 251 252 253 254 255 256 257
{
	struct svc_export	*exp;
	struct dentry		*dentry;
	__be32 err;

	err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
	if (err)
		return err;
258 259 260
	err = check_nfsd_access(exp, rqstp);
	if (err)
		goto out;
L
Linus Torvalds 已提交
261 262 263 264 265 266 267
	/*
	 * Note: we compose the file handle now, but as the
	 * dentry may be negative, it may need to be updated.
	 */
	err = fh_compose(resfh, exp, dentry, fhp);
	if (!err && !dentry->d_inode)
		err = nfserr_noent;
268
out:
L
Linus Torvalds 已提交
269 270 271 272 273
	dput(dentry);
	exp_put(exp);
	return err;
}

274

L
Linus Torvalds 已提交
275 276 277 278
/*
 * Set various file attributes.
 * N.B. After this call fhp needs an fh_put
 */
279
__be32
L
Linus Torvalds 已提交
280 281 282 283 284
nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
	     int check_guard, time_t guardtime)
{
	struct dentry	*dentry;
	struct inode	*inode;
M
Miklos Szeredi 已提交
285
	int		accmode = NFSD_MAY_SATTR;
L
Linus Torvalds 已提交
286
	int		ftype = 0;
287 288
	__be32		err;
	int		host_err;
L
Linus Torvalds 已提交
289 290 291
	int		size_change = 0;

	if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
M
Miklos Szeredi 已提交
292
		accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
L
Linus Torvalds 已提交
293 294 295 296 297
	if (iap->ia_valid & ATTR_SIZE)
		ftype = S_IFREG;

	/* Get inode */
	err = fh_verify(rqstp, fhp, ftype, accmode);
298
	if (err)
L
Linus Torvalds 已提交
299 300 301 302 303
		goto out;

	dentry = fhp->fh_dentry;
	inode = dentry->d_inode;

304 305 306 307 308 309 310
	/* Ignore any mode updates on symlinks */
	if (S_ISLNK(inode->i_mode))
		iap->ia_valid &= ~ATTR_MODE;

	if (!iap->ia_valid)
		goto out;

311 312
	/*
	 * NFSv2 does not differentiate between "set-[ac]time-to-now"
L
Linus Torvalds 已提交
313 314 315 316 317 318 319 320 321 322 323 324
	 * which only requires access, and "set-[ac]time-to-X" which
	 * requires ownership.
	 * So if it looks like it might be "set both to the same time which
	 * is close to now", and if inode_change_ok fails, then we
	 * convert to "set to now" instead of "set to explicit time"
	 *
	 * We only call inode_change_ok as the last test as technically
	 * it is not an interface that we should be using.  It is only
	 * valid if the filesystem does not define it's own i_op->setattr.
	 */
#define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
#define	MAX_TOUCH_TIME_ERROR (30*60)
325 326 327 328 329 330 331 332
	if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
	    iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
		/*
		 * Looks probable.
		 *
		 * Now just make sure time is in the right ballpark.
		 * Solaris, at least, doesn't seem to care what the time
		 * request is.  We require it be within 30 minutes of now.
L
Linus Torvalds 已提交
333
		 */
334 335 336 337 338 339 340 341 342 343 344 345
		time_t delta = iap->ia_atime.tv_sec - get_seconds();
		if (delta < 0)
			delta = -delta;
		if (delta < MAX_TOUCH_TIME_ERROR &&
		    inode_change_ok(inode, iap) != 0) {
			/*
			 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
			 * This will cause notify_change to set these times
			 * to "now"
			 */
			iap->ia_valid &= ~BOTH_TIME_SET;
		}
L
Linus Torvalds 已提交
346 347
	}
	    
348 349 350 351
	/*
	 * The size case is special.
	 * It changes the file as well as the attributes.
	 */
L
Linus Torvalds 已提交
352 353
	if (iap->ia_valid & ATTR_SIZE) {
		if (iap->ia_size < inode->i_size) {
M
Miklos Szeredi 已提交
354 355
			err = nfsd_permission(rqstp, fhp->fh_export, dentry,
					NFSD_MAY_TRUNC|NFSD_MAY_OWNER_OVERRIDE);
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363
			if (err)
				goto out;
		}

		/*
		 * If we are changing the size of the file, then
		 * we need to break all leases.
		 */
364 365 366 367
		host_err = break_lease(inode, FMODE_WRITE | O_NONBLOCK);
		if (host_err == -EWOULDBLOCK)
			host_err = -ETIMEDOUT;
		if (host_err) /* ENOMEM or EWOULDBLOCK */
L
Linus Torvalds 已提交
368 369
			goto out_nfserr;

370 371
		host_err = get_write_access(inode);
		if (host_err)
L
Linus Torvalds 已提交
372 373 374
			goto out_nfserr;

		size_change = 1;
375 376
		host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
		if (host_err) {
L
Linus Torvalds 已提交
377 378 379
			put_write_access(inode);
			goto out_nfserr;
		}
380
		vfs_dq_init(inode);
L
Linus Torvalds 已提交
381 382
	}

383
	/* sanitize the mode change */
L
Linus Torvalds 已提交
384 385
	if (iap->ia_valid & ATTR_MODE) {
		iap->ia_mode &= S_IALLUGO;
386
		iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
387 388 389
	}

	/* Revoke setuid/setgid on chown */
390 391 392
	if (!S_ISDIR(inode->i_mode) &&
	    (((iap->ia_valid & ATTR_UID) && iap->ia_uid != inode->i_uid) ||
	     ((iap->ia_valid & ATTR_GID) && iap->ia_gid != inode->i_gid))) {
393 394 395
		iap->ia_valid |= ATTR_KILL_PRIV;
		if (iap->ia_valid & ATTR_MODE) {
			/* we're setting mode too, just clear the s*id bits */
396
			iap->ia_mode &= ~S_ISUID;
397 398 399 400 401
			if (iap->ia_mode & S_IXGRP)
				iap->ia_mode &= ~S_ISGID;
		} else {
			/* set ATTR_KILL_* bits and let VFS handle it */
			iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
402
		}
L
Linus Torvalds 已提交
403 404 405 406 407 408 409 410 411
	}

	/* Change the attributes. */

	iap->ia_valid |= ATTR_CTIME;

	err = nfserr_notsync;
	if (!check_guard || guardtime == inode->i_ctime.tv_sec) {
		fh_lock(fhp);
412 413
		host_err = notify_change(dentry, iap);
		err = nfserrno(host_err);
L
Linus Torvalds 已提交
414 415 416 417 418 419 420 421 422 423 424
		fh_unlock(fhp);
	}
	if (size_change)
		put_write_access(inode);
	if (!err)
		if (EX_ISSYNC(fhp->fh_export))
			write_inode_now(inode, 1);
out:
	return err;

out_nfserr:
425
	err = nfserrno(host_err);
L
Linus Torvalds 已提交
426 427 428
	goto out;
}

429 430 431 432 433 434
#if defined(CONFIG_NFSD_V2_ACL) || \
    defined(CONFIG_NFSD_V3_ACL) || \
    defined(CONFIG_NFSD_V4)
static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
{
	ssize_t buflen;
435
	ssize_t ret;
436 437 438 439

	buflen = vfs_getxattr(dentry, key, NULL, 0);
	if (buflen <= 0)
		return buflen;
L
Linus Torvalds 已提交
440

441 442 443 444
	*buf = kmalloc(buflen, GFP_KERNEL);
	if (!*buf)
		return -ENOMEM;

445 446 447 448
	ret = vfs_getxattr(dentry, key, *buf, buflen);
	if (ret < 0)
		kfree(*buf);
	return ret;
449 450 451 452
}
#endif

#if defined(CONFIG_NFSD_V4)
L
Linus Torvalds 已提交
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
static int
set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
{
	int len;
	size_t buflen;
	char *buf = NULL;
	int error = 0;

	buflen = posix_acl_xattr_size(pacl->a_count);
	buf = kmalloc(buflen, GFP_KERNEL);
	error = -ENOMEM;
	if (buf == NULL)
		goto out;

	len = posix_acl_to_xattr(pacl, buf, buflen);
	if (len < 0) {
		error = len;
		goto out;
	}

473
	error = vfs_setxattr(dentry, key, buf, len, 0);
L
Linus Torvalds 已提交
474 475 476 477 478
out:
	kfree(buf);
	return error;
}

479
__be32
L
Linus Torvalds 已提交
480 481 482
nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
    struct nfs4_acl *acl)
{
483 484
	__be32 error;
	int host_error;
L
Linus Torvalds 已提交
485 486 487 488 489 490
	struct dentry *dentry;
	struct inode *inode;
	struct posix_acl *pacl = NULL, *dpacl = NULL;
	unsigned int flags = 0;

	/* Get inode */
M
Miklos Szeredi 已提交
491
	error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
L
Linus Torvalds 已提交
492
	if (error)
493
		return error;
L
Linus Torvalds 已提交
494 495 496 497 498 499

	dentry = fhp->fh_dentry;
	inode = dentry->d_inode;
	if (S_ISDIR(inode->i_mode))
		flags = NFS4_ACL_DIR;

500 501
	host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
	if (host_error == -EINVAL) {
502
		return nfserr_attrnotsupp;
503
	} else if (host_error < 0)
L
Linus Torvalds 已提交
504 505
		goto out_nfserr;

506 507
	host_error = set_nfsv4_acl_one(dentry, pacl, POSIX_ACL_XATTR_ACCESS);
	if (host_error < 0)
508
		goto out_release;
L
Linus Torvalds 已提交
509

510
	if (S_ISDIR(inode->i_mode))
511
		host_error = set_nfsv4_acl_one(dentry, dpacl, POSIX_ACL_XATTR_DEFAULT);
L
Linus Torvalds 已提交
512

513
out_release:
L
Linus Torvalds 已提交
514 515 516
	posix_acl_release(pacl);
	posix_acl_release(dpacl);
out_nfserr:
517
	if (host_error == -EOPNOTSUPP)
518
		return nfserr_attrnotsupp;
519
	else
520
		return nfserrno(host_error);
L
Linus Torvalds 已提交
521 522 523 524 525
}

static struct posix_acl *
_get_posix_acl(struct dentry *dentry, char *key)
{
526
	void *buf = NULL;
L
Linus Torvalds 已提交
527
	struct posix_acl *pacl = NULL;
528
	int buflen;
L
Linus Torvalds 已提交
529

530 531 532 533 534
	buflen = nfsd_getxattr(dentry, key, &buf);
	if (!buflen)
		buflen = -ENODATA;
	if (buflen <= 0)
		return ERR_PTR(buflen);
L
Linus Torvalds 已提交
535 536 537 538 539 540 541 542 543 544 545 546 547 548

	pacl = posix_acl_from_xattr(buf, buflen);
	kfree(buf);
	return pacl;
}

int
nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
{
	struct inode *inode = dentry->d_inode;
	int error = 0;
	struct posix_acl *pacl = NULL, *dpacl = NULL;
	unsigned int flags = 0;

549
	pacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_ACCESS);
L
Linus Torvalds 已提交
550 551 552 553 554 555 556 557 558
	if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
		pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
	if (IS_ERR(pacl)) {
		error = PTR_ERR(pacl);
		pacl = NULL;
		goto out;
	}

	if (S_ISDIR(inode->i_mode)) {
559
		dpacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_DEFAULT);
L
Linus Torvalds 已提交
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
		if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
			dpacl = NULL;
		else if (IS_ERR(dpacl)) {
			error = PTR_ERR(dpacl);
			dpacl = NULL;
			goto out;
		}
		flags = NFS4_ACL_DIR;
	}

	*acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
	if (IS_ERR(*acl)) {
		error = PTR_ERR(*acl);
		*acl = NULL;
	}
 out:
	posix_acl_release(pacl);
	posix_acl_release(dpacl);
	return error;
}

#endif /* defined(CONFIG_NFS_V4) */

#ifdef CONFIG_NFSD_V3
/*
 * Check server access rights to a file system object
 */
struct accessmap {
	u32		access;
	int		how;
};
static struct accessmap	nfs3_regaccess[] = {
M
Miklos Szeredi 已提交
592 593 594 595
    {	NFS3_ACCESS_READ,	NFSD_MAY_READ			},
    {	NFS3_ACCESS_EXECUTE,	NFSD_MAY_EXEC			},
    {	NFS3_ACCESS_MODIFY,	NFSD_MAY_WRITE|NFSD_MAY_TRUNC	},
    {	NFS3_ACCESS_EXTEND,	NFSD_MAY_WRITE			},
L
Linus Torvalds 已提交
596 597 598 599 600

    {	0,			0				}
};

static struct accessmap	nfs3_diraccess[] = {
M
Miklos Szeredi 已提交
601 602 603 604 605
    {	NFS3_ACCESS_READ,	NFSD_MAY_READ			},
    {	NFS3_ACCESS_LOOKUP,	NFSD_MAY_EXEC			},
    {	NFS3_ACCESS_MODIFY,	NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
    {	NFS3_ACCESS_EXTEND,	NFSD_MAY_EXEC|NFSD_MAY_WRITE	},
    {	NFS3_ACCESS_DELETE,	NFSD_MAY_REMOVE			},
L
Linus Torvalds 已提交
606 607 608 609 610 611 612 613 614 615 616 617

    {	0,			0				}
};

static struct accessmap	nfs3_anyaccess[] = {
	/* Some clients - Solaris 2.6 at least, make an access call
	 * to the server to check for access for things like /dev/null
	 * (which really, the server doesn't care about).  So
	 * We provide simple access checking for them, looking
	 * mainly at mode bits, and we make sure to ignore read-only
	 * filesystem checks
	 */
M
Miklos Szeredi 已提交
618 619 620 621
    {	NFS3_ACCESS_READ,	NFSD_MAY_READ			},
    {	NFS3_ACCESS_EXECUTE,	NFSD_MAY_EXEC			},
    {	NFS3_ACCESS_MODIFY,	NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS	},
    {	NFS3_ACCESS_EXTEND,	NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS	},
L
Linus Torvalds 已提交
622 623 624 625

    {	0,			0				}
};

626
__be32
L
Linus Torvalds 已提交
627 628 629 630 631 632
nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
{
	struct accessmap	*map;
	struct svc_export	*export;
	struct dentry		*dentry;
	u32			query, result = 0, sresult = 0;
633
	__be32			error;
L
Linus Torvalds 已提交
634

M
Miklos Szeredi 已提交
635
	error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
L
Linus Torvalds 已提交
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
	if (error)
		goto out;

	export = fhp->fh_export;
	dentry = fhp->fh_dentry;

	if (S_ISREG(dentry->d_inode->i_mode))
		map = nfs3_regaccess;
	else if (S_ISDIR(dentry->d_inode->i_mode))
		map = nfs3_diraccess;
	else
		map = nfs3_anyaccess;


	query = *access;
	for  (; map->access; map++) {
		if (map->access & query) {
653
			__be32 err2;
L
Linus Torvalds 已提交
654 655 656

			sresult |= map->access;

657
			err2 = nfsd_permission(rqstp, export, dentry, map->how);
L
Linus Torvalds 已提交
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
			switch (err2) {
			case nfs_ok:
				result |= map->access;
				break;
				
			/* the following error codes just mean the access was not allowed,
			 * rather than an error occurred */
			case nfserr_rofs:
			case nfserr_acces:
			case nfserr_perm:
				/* simply don't "or" in the access bit. */
				break;
			default:
				error = err2;
				goto out;
			}
		}
	}
	*access = result;
	if (supported)
		*supported = sresult;

 out:
	return error;
}
#endif /* CONFIG_NFSD_V3 */



/*
 * Open an existing file or directory.
 * The access argument indicates the type of open (read/write/lock)
 * N.B. After this call fhp needs an fh_put
 */
692
__be32
L
Linus Torvalds 已提交
693 694 695 696 697
nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
			int access, struct file **filp)
{
	struct dentry	*dentry;
	struct inode	*inode;
698 699 700
	int		flags = O_RDONLY|O_LARGEFILE;
	__be32		err;
	int		host_err;
L
Linus Torvalds 已提交
701

702 703
	validate_process_creds();

L
Linus Torvalds 已提交
704 705 706 707 708
	/*
	 * If we get here, then the client has already done an "open",
	 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
	 * in case a chmod has now revoked permission.
	 */
M
Miklos Szeredi 已提交
709
	err = fh_verify(rqstp, fhp, type, access | NFSD_MAY_OWNER_OVERRIDE);
L
Linus Torvalds 已提交
710 711 712 713 714 715 716 717 718 719
	if (err)
		goto out;

	dentry = fhp->fh_dentry;
	inode = dentry->d_inode;

	/* Disallow write access to files with the append-only bit set
	 * or any access when mandatory locking enabled
	 */
	err = nfserr_perm;
M
Miklos Szeredi 已提交
720
	if (IS_APPEND(inode) && (access & NFSD_MAY_WRITE))
L
Linus Torvalds 已提交
721
		goto out;
J
J. Bruce Fields 已提交
722 723 724 725 726 727
	/*
	 * We must ignore files (but only files) which might have mandatory
	 * locks on them because there is no way to know if the accesser has
	 * the lock.
	 */
	if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
L
Linus Torvalds 已提交
728 729 730 731 732 733 734 735 736
		goto out;

	if (!inode->i_fop)
		goto out;

	/*
	 * Check to see if there are any leases on this file.
	 * This may block while leases are broken.
	 */
M
Miklos Szeredi 已提交
737
	host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? FMODE_WRITE : 0));
738 739 740
	if (host_err == -EWOULDBLOCK)
		host_err = -ETIMEDOUT;
	if (host_err) /* NOMEM or WOULDBLOCK */
L
Linus Torvalds 已提交
741 742
		goto out_nfserr;

M
Miklos Szeredi 已提交
743 744
	if (access & NFSD_MAY_WRITE) {
		if (access & NFSD_MAY_READ)
745 746 747
			flags = O_RDWR|O_LARGEFILE;
		else
			flags = O_WRONLY|O_LARGEFILE;
L
Linus Torvalds 已提交
748

749
		vfs_dq_init(inode);
L
Linus Torvalds 已提交
750
	}
751
	*filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt),
752
			    flags, current_cred());
L
Linus Torvalds 已提交
753
	if (IS_ERR(*filp))
754
		host_err = PTR_ERR(*filp);
L
Linus Torvalds 已提交
755
out_nfserr:
756
	err = nfserrno(host_err);
L
Linus Torvalds 已提交
757
out:
758
	validate_process_creds();
L
Linus Torvalds 已提交
759 760 761 762 763 764 765 766 767 768 769 770
	return err;
}

/*
 * Close a file.
 */
void
nfsd_close(struct file *filp)
{
	fput(filp);
}

771
/*
772 773 774 775 776 777
 * Sync a directory to disk.
 *
 * We can't just call vfs_fsync because our requirements are slightly odd:
 *
 *  a) we do not have a file struct available
 *  b) we expect to have i_mutex already held by the caller
778
 */
779 780
int
nfsd_sync_dir(struct dentry *dentry)
L
Linus Torvalds 已提交
781
{
782 783
	struct inode *inode = dentry->d_inode;
	int error;
784

785
	WARN_ON(!mutex_is_locked(&inode->i_mutex));
L
Linus Torvalds 已提交
786

787 788 789 790
	error = filemap_write_and_wait(inode->i_mapping);
	if (!error && inode->i_fop->fsync)
		error = inode->i_fop->fsync(NULL, dentry, 0);
	return error;
L
Linus Torvalds 已提交
791 792 793 794 795 796 797 798 799 800 801 802
}

/*
 * Obtain the readahead parameters for the file
 * specified by (dev, ino).
 */

static inline struct raparms *
nfsd_get_raparms(dev_t dev, ino_t ino)
{
	struct raparms	*ra, **rap, **frap = NULL;
	int depth = 0;
803 804 805 806 807
	unsigned int hash;
	struct raparm_hbucket *rab;

	hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
	rab = &raparm_hash[hash];
L
Linus Torvalds 已提交
808

809 810
	spin_lock(&rab->pb_lock);
	for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
L
Linus Torvalds 已提交
811 812 813 814 815 816 817 818
		if (ra->p_ino == ino && ra->p_dev == dev)
			goto found;
		depth++;
		if (ra->p_count == 0)
			frap = rap;
	}
	depth = nfsdstats.ra_size*11/10;
	if (!frap) {	
819
		spin_unlock(&rab->pb_lock);
L
Linus Torvalds 已提交
820 821 822 823 824 825 826
		return NULL;
	}
	rap = frap;
	ra = *frap;
	ra->p_dev = dev;
	ra->p_ino = ino;
	ra->p_set = 0;
827
	ra->p_hindex = hash;
L
Linus Torvalds 已提交
828
found:
829
	if (rap != &rab->pb_head) {
L
Linus Torvalds 已提交
830
		*rap = ra->p_next;
831 832
		ra->p_next   = rab->pb_head;
		rab->pb_head = ra;
L
Linus Torvalds 已提交
833 834 835
	}
	ra->p_count++;
	nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
836
	spin_unlock(&rab->pb_lock);
L
Linus Torvalds 已提交
837 838 839 840
	return ra;
}

/*
841 842 843
 * Grab and keep cached pages associated with a file in the svc_rqst
 * so that they can be passed to the network sendmsg/sendpage routines
 * directly. They will be released after the sending has completed.
L
Linus Torvalds 已提交
844 845
 */
static int
846 847
nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
		  struct splice_desc *sd)
L
Linus Torvalds 已提交
848
{
849
	struct svc_rqst *rqstp = sd->u.data;
850
	struct page **pp = rqstp->rq_respages + rqstp->rq_resused;
851 852 853
	struct page *page = buf->page;
	size_t size;
	int ret;
L
Linus Torvalds 已提交
854

855
	ret = buf->ops->confirm(pipe, buf);
856 857 858 859
	if (unlikely(ret))
		return ret;

	size = sd->len;
L
Linus Torvalds 已提交
860 861 862

	if (rqstp->rq_res.page_len == 0) {
		get_page(page);
863 864 865
		put_page(*pp);
		*pp = page;
		rqstp->rq_resused++;
866
		rqstp->rq_res.page_base = buf->offset;
L
Linus Torvalds 已提交
867
		rqstp->rq_res.page_len = size;
868
	} else if (page != pp[-1]) {
L
Linus Torvalds 已提交
869
		get_page(page);
870 871
		if (*pp)
			put_page(*pp);
872 873
		*pp = page;
		rqstp->rq_resused++;
L
Linus Torvalds 已提交
874
		rqstp->rq_res.page_len += size;
875
	} else
L
Linus Torvalds 已提交
876 877 878 879 880
		rqstp->rq_res.page_len += size;

	return size;
}

881 882 883 884 885 886
static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
				    struct splice_desc *sd)
{
	return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
}

887 888 889 890 891 892 893 894 895
static inline int svc_msnfs(struct svc_fh *ffhp)
{
#ifdef MSNFS
	return (ffhp->fh_export->ex_flags & NFSEXP_MSNFS);
#else
	return 0;
#endif
}

896
static __be32
L
Linus Torvalds 已提交
897 898 899 900 901 902
nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
              loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
{
	struct inode *inode;
	struct raparms	*ra;
	mm_segment_t	oldfs;
903 904
	__be32		err;
	int		host_err;
L
Linus Torvalds 已提交
905 906

	err = nfserr_perm;
907
	inode = file->f_path.dentry->d_inode;
908 909

	if (svc_msnfs(fhp) && !lock_may_read(inode, offset, *count))
L
Linus Torvalds 已提交
910 911 912 913 914 915 916 917
		goto out;

	/* Get readahead parameters */
	ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);

	if (ra && ra->p_set)
		file->f_ra = ra->p_ra;

918 919 920 921 922 923 924 925
	if (file->f_op->splice_read && rqstp->rq_splice_ok) {
		struct splice_desc sd = {
			.len		= 0,
			.total_len	= *count,
			.pos		= offset,
			.u.data		= rqstp,
		};

926
		rqstp->rq_resused = 1;
927
		host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
L
Linus Torvalds 已提交
928 929 930
	} else {
		oldfs = get_fs();
		set_fs(KERNEL_DS);
931
		host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
L
Linus Torvalds 已提交
932 933 934 935 936
		set_fs(oldfs);
	}

	/* Write back readahead params */
	if (ra) {
937 938
		struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
		spin_lock(&rab->pb_lock);
L
Linus Torvalds 已提交
939 940 941
		ra->p_ra = file->f_ra;
		ra->p_set = 1;
		ra->p_count--;
942
		spin_unlock(&rab->pb_lock);
L
Linus Torvalds 已提交
943 944
	}

945 946 947
	if (host_err >= 0) {
		nfsdstats.io_read += host_err;
		*count = host_err;
L
Linus Torvalds 已提交
948
		err = 0;
949
		fsnotify_access(file->f_path.dentry);
L
Linus Torvalds 已提交
950
	} else 
951
		err = nfserrno(host_err);
L
Linus Torvalds 已提交
952 953 954 955
out:
	return err;
}

956 957 958
static void kill_suid(struct dentry *dentry)
{
	struct iattr	ia;
959
	ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
960

961
	mutex_lock(&dentry->d_inode->i_mutex);
962
	notify_change(dentry, &ia);
963
	mutex_unlock(&dentry->d_inode->i_mutex);
964 965
}

966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
/*
 * Gathered writes: If another process is currently writing to the file,
 * there's a high chance this is another nfsd (triggered by a bulk write
 * from a client's biod). Rather than syncing the file with each write
 * request, we sleep for 10 msec.
 *
 * I don't know if this roughly approximates C. Juszak's idea of
 * gathered writes, but it's a nice and simple solution (IMHO), and it
 * seems to work:-)
 *
 * Note: we do this only in the NFSv2 case, since v3 and higher have a
 * better tool (separate unstable writes and commits) for solving this
 * problem.
 */
static int wait_for_concurrent_writes(struct file *file)
{
	struct inode *inode = file->f_path.dentry->d_inode;
	static ino_t last_ino;
	static dev_t last_dev;
	int err = 0;

	if (atomic_read(&inode->i_writecount) > 1
	    || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
		dprintk("nfsd: write defer %d\n", task_pid_nr(current));
		msleep(10);
		dprintk("nfsd: write resume %d\n", task_pid_nr(current));
	}

	if (inode->i_state & I_DIRTY) {
		dprintk("nfsd: write sync %d\n", task_pid_nr(current));
996
		err = vfs_fsync(file, file->f_path.dentry, 0);
997 998 999 1000 1001 1002
	}
	last_ino = inode->i_ino;
	last_dev = inode->i_sb->s_dev;
	return err;
}

1003
static __be32
L
Linus Torvalds 已提交
1004 1005
nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
				loff_t offset, struct kvec *vec, int vlen,
1006
				unsigned long *cnt, int *stablep)
L
Linus Torvalds 已提交
1007 1008 1009 1010 1011
{
	struct svc_export	*exp;
	struct dentry		*dentry;
	struct inode		*inode;
	mm_segment_t		oldfs;
1012 1013
	__be32			err = 0;
	int			host_err;
L
Linus Torvalds 已提交
1014
	int			stable = *stablep;
1015
	int			use_wgather;
L
Linus Torvalds 已提交
1016

1017
#ifdef MSNFS
L
Linus Torvalds 已提交
1018 1019 1020
	err = nfserr_perm;

	if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
1021
		(!lock_may_write(file->f_path.dentry->d_inode, offset, *cnt)))
L
Linus Torvalds 已提交
1022 1023 1024
		goto out;
#endif

1025
	dentry = file->f_path.dentry;
L
Linus Torvalds 已提交
1026 1027 1028 1029 1030 1031 1032 1033
	inode = dentry->d_inode;
	exp   = fhp->fh_export;

	/*
	 * Request sync writes if
	 *  -	the sync export option has been set, or
	 *  -	the client requested O_SYNC behavior (NFSv3 feature).
	 *  -   The file system doesn't support fsync().
1034
	 * When NFSv2 gathered writes have been configured for this volume,
L
Linus Torvalds 已提交
1035 1036
	 * flushing the data to disk is handled separately below.
	 */
1037
	use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
L
Linus Torvalds 已提交
1038

1039
	if (!file->f_op->fsync) {/* COMMIT3 cannot work */
L
Linus Torvalds 已提交
1040 1041 1042 1043 1044 1045
	       stable = 2;
	       *stablep = 2; /* FILE_SYNC */
	}

	if (!EX_ISSYNC(exp))
		stable = 0;
1046
	if (stable && !use_wgather) {
J
Jonathan Corbet 已提交
1047
		spin_lock(&file->f_lock);
L
Linus Torvalds 已提交
1048
		file->f_flags |= O_SYNC;
J
Jonathan Corbet 已提交
1049 1050
		spin_unlock(&file->f_lock);
	}
L
Linus Torvalds 已提交
1051 1052 1053

	/* Write the data. */
	oldfs = get_fs(); set_fs(KERNEL_DS);
1054
	host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
L
Linus Torvalds 已提交
1055
	set_fs(oldfs);
1056 1057 1058 1059 1060
	if (host_err < 0)
		goto out_nfserr;
	*cnt = host_err;
	nfsdstats.io_write += host_err;
	fsnotify_modify(file->f_path.dentry);
L
Linus Torvalds 已提交
1061 1062

	/* clear setuid/setgid flag after write */
1063
	if (inode->i_mode & (S_ISUID | S_ISGID))
1064
		kill_suid(dentry);
L
Linus Torvalds 已提交
1065

1066
	if (stable && use_wgather)
1067
		host_err = wait_for_concurrent_writes(file);
L
Linus Torvalds 已提交
1068

1069
out_nfserr:
1070
	dprintk("nfsd: write complete host_err=%d\n", host_err);
1071
	if (host_err >= 0)
L
Linus Torvalds 已提交
1072
		err = 0;
1073
	else
1074
		err = nfserrno(host_err);
L
Linus Torvalds 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083
out:
	return err;
}

/*
 * Read data from a file. count must contain the requested read count
 * on entry. On return, *count contains the number of bytes actually read.
 * N.B. After this call fhp needs an fh_put
 */
1084
__be32
L
Linus Torvalds 已提交
1085 1086 1087 1088
nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
		loff_t offset, struct kvec *vec, int vlen,
		unsigned long *count)
{
1089
	__be32		err;
L
Linus Torvalds 已提交
1090 1091

	if (file) {
1092
		err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
M
Miklos Szeredi 已提交
1093
				NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
L
Linus Torvalds 已提交
1094 1095 1096 1097
		if (err)
			goto out;
		err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
	} else {
M
Miklos Szeredi 已提交
1098
		err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
L
Linus Torvalds 已提交
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
		if (err)
			goto out;
		err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
		nfsd_close(file);
	}
out:
	return err;
}

/*
 * Write data to a file.
 * The stable flag requests synchronous writes.
 * N.B. After this call fhp needs an fh_put
 */
1113
__be32
L
Linus Torvalds 已提交
1114
nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1115
		loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
L
Linus Torvalds 已提交
1116 1117
		int *stablep)
{
1118
	__be32			err = 0;
L
Linus Torvalds 已提交
1119 1120

	if (file) {
1121
		err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
M
Miklos Szeredi 已提交
1122
				NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
L
Linus Torvalds 已提交
1123 1124 1125 1126 1127
		if (err)
			goto out;
		err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
				stablep);
	} else {
M
Miklos Szeredi 已提交
1128
		err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
L
Linus Torvalds 已提交
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
		if (err)
			goto out;

		if (cnt)
			err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
					     cnt, stablep);
		nfsd_close(file);
	}
out:
	return err;
}

#ifdef CONFIG_NFSD_V3
/*
 * Commit all pending writes to stable storage.
1144 1145 1146
 *
 * Note: we only guarantee that data that lies within the range specified
 * by the 'offset' and 'count' parameters will be synced.
L
Linus Torvalds 已提交
1147 1148 1149 1150
 *
 * Unfortunately we cannot lock the file to make sure we return full WCC
 * data to the client, as locking happens lower down in the filesystem.
 */
1151
__be32
L
Linus Torvalds 已提交
1152 1153 1154 1155
nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
               loff_t offset, unsigned long count)
{
	struct file	*file;
1156 1157
	loff_t		end = LLONG_MAX;
	__be32		err = nfserr_inval;
L
Linus Torvalds 已提交
1158

1159 1160 1161 1162 1163 1164 1165
	if (offset < 0)
		goto out;
	if (count != 0) {
		end = offset + (loff_t)count - 1;
		if (end < offset)
			goto out;
	}
L
Linus Torvalds 已提交
1166

M
Miklos Szeredi 已提交
1167 1168
	err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
	if (err)
1169
		goto out;
L
Linus Torvalds 已提交
1170
	if (EX_ISSYNC(fhp->fh_export)) {
1171 1172 1173 1174 1175 1176
		int err2 = vfs_fsync_range(file, file->f_path.dentry,
				offset, end, 0);

		if (err2 != -EINVAL)
			err = nfserrno(err2);
		else
L
Linus Torvalds 已提交
1177 1178 1179 1180
			err = nfserr_notsupp;
	}

	nfsd_close(file);
1181
out:
L
Linus Torvalds 已提交
1182 1183 1184 1185
	return err;
}
#endif /* CONFIG_NFSD_V3 */

A
Adrian Bunk 已提交
1186
static __be32
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198
nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
			struct iattr *iap)
{
	/*
	 * Mode has already been set earlier in create:
	 */
	iap->ia_valid &= ~ATTR_MODE;
	/*
	 * Setting uid/gid works only for root.  Irix appears to
	 * send along the gid on create when it tries to implement
	 * setgid directories via NFS:
	 */
1199
	if (current_fsuid() != 0)
1200 1201 1202 1203 1204 1205
		iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
	if (iap->ia_valid)
		return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
	return 0;
}

1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
 * setting size to 0 may fail for some specific file systems by the permission
 * checking which requires WRITE permission but the mode is 000.
 * we ignore the resizing(to 0) on the just new created file, since the size is
 * 0 after file created.
 *
 * call this only after vfs_create() is called.
 * */
static void
nfsd_check_ignore_resizing(struct iattr *iap)
{
	if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
		iap->ia_valid &= ~ATTR_SIZE;
}

L
Linus Torvalds 已提交
1221 1222 1223 1224 1225 1226 1227 1228
/*
 * Create a file (regular, directory, device, fifo); UNIX sockets 
 * not yet implemented.
 * If the response fh has been verified, the parent directory should
 * already be locked. Note that the parent directory is left locked.
 *
 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
 */
1229
__be32
L
Linus Torvalds 已提交
1230 1231 1232 1233 1234 1235
nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
		char *fname, int flen, struct iattr *iap,
		int type, dev_t rdev, struct svc_fh *resfhp)
{
	struct dentry	*dentry, *dchild = NULL;
	struct inode	*dirp;
1236
	__be32		err;
1237
	__be32		err2;
1238
	int		host_err;
L
Linus Torvalds 已提交
1239 1240 1241 1242 1243 1244 1245 1246

	err = nfserr_perm;
	if (!flen)
		goto out;
	err = nfserr_exist;
	if (isdotent(fname, flen))
		goto out;

M
Miklos Szeredi 已提交
1247
	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
L
Linus Torvalds 已提交
1248 1249 1250 1251 1252 1253 1254
	if (err)
		goto out;

	dentry = fhp->fh_dentry;
	dirp = dentry->d_inode;

	err = nfserr_notdir;
A
Al Viro 已提交
1255
	if (!dirp->i_op->lookup)
L
Linus Torvalds 已提交
1256 1257 1258 1259 1260 1261 1262
		goto out;
	/*
	 * Check whether the response file handle has been verified yet.
	 * If it has, the parent directory should already be locked.
	 */
	if (!resfhp->fh_dentry) {
		/* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
P
Peter Zijlstra 已提交
1263
		fh_lock_nested(fhp, I_MUTEX_PARENT);
L
Linus Torvalds 已提交
1264
		dchild = lookup_one_len(fname, dentry, flen);
1265
		host_err = PTR_ERR(dchild);
L
Linus Torvalds 已提交
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
		if (IS_ERR(dchild))
			goto out_nfserr;
		err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
		if (err)
			goto out;
	} else {
		/* called from nfsd_proc_create */
		dchild = dget(resfhp->fh_dentry);
		if (!fhp->fh_locked) {
			/* not actually possible */
			printk(KERN_ERR
				"nfsd_create: parent %s/%s not locked!\n",
				dentry->d_parent->d_name.name,
				dentry->d_name.name);
A
Al Viro 已提交
1280
			err = nfserr_io;
L
Linus Torvalds 已提交
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
			goto out;
		}
	}
	/*
	 * Make sure the child dentry is still negative ...
	 */
	err = nfserr_exist;
	if (dchild->d_inode) {
		dprintk("nfsd_create: dentry %s/%s not negative!\n",
			dentry->d_name.name, dchild->d_name.name);
		goto out; 
	}

	if (!(iap->ia_valid & ATTR_MODE))
		iap->ia_mode = 0;
	iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;

1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
	err = nfserr_inval;
	if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
		printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
		       type);
		goto out;
	}

	host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
	if (host_err)
		goto out_nfserr;

L
Linus Torvalds 已提交
1309 1310 1311
	/*
	 * Get the dir op function pointer.
	 */
1312
	err = 0;
L
Linus Torvalds 已提交
1313 1314
	switch (type) {
	case S_IFREG:
1315
		host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
1316 1317
		if (!host_err)
			nfsd_check_ignore_resizing(iap);
L
Linus Torvalds 已提交
1318 1319
		break;
	case S_IFDIR:
1320
		host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
L
Linus Torvalds 已提交
1321 1322 1323 1324 1325
		break;
	case S_IFCHR:
	case S_IFBLK:
	case S_IFIFO:
	case S_IFSOCK:
1326
		host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
L
Linus Torvalds 已提交
1327 1328
		break;
	}
1329 1330
	if (host_err < 0) {
		mnt_drop_write(fhp->fh_export->ex_path.mnt);
L
Linus Torvalds 已提交
1331
		goto out_nfserr;
1332
	}
L
Linus Torvalds 已提交
1333 1334

	if (EX_ISSYNC(fhp->fh_export)) {
1335
		err = nfserrno(nfsd_sync_dir(dentry));
L
Linus Torvalds 已提交
1336 1337 1338
		write_inode_now(dchild->d_inode, 1);
	}

1339 1340 1341
	err2 = nfsd_create_setattr(rqstp, resfhp, iap);
	if (err2)
		err = err2;
1342
	mnt_drop_write(fhp->fh_export->ex_path.mnt);
L
Linus Torvalds 已提交
1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
	/*
	 * Update the file handle to get the new inode info.
	 */
	if (!err)
		err = fh_update(resfhp);
out:
	if (dchild && !IS_ERR(dchild))
		dput(dchild);
	return err;

out_nfserr:
1354
	err = nfserrno(host_err);
L
Linus Torvalds 已提交
1355 1356 1357 1358 1359 1360 1361
	goto out;
}

#ifdef CONFIG_NFSD_V3
/*
 * NFSv3 version of nfsd_create
 */
1362
__be32
L
Linus Torvalds 已提交
1363 1364 1365
nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
		char *fname, int flen, struct iattr *iap,
		struct svc_fh *resfhp, int createmode, u32 *verifier,
1366
	        int *truncp, int *created)
L
Linus Torvalds 已提交
1367 1368 1369
{
	struct dentry	*dentry, *dchild = NULL;
	struct inode	*dirp;
1370
	__be32		err;
1371
	__be32		err2;
1372
	int		host_err;
L
Linus Torvalds 已提交
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
	__u32		v_mtime=0, v_atime=0;

	err = nfserr_perm;
	if (!flen)
		goto out;
	err = nfserr_exist;
	if (isdotent(fname, flen))
		goto out;
	if (!(iap->ia_valid & ATTR_MODE))
		iap->ia_mode = 0;
M
Miklos Szeredi 已提交
1383
	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
L
Linus Torvalds 已提交
1384 1385 1386 1387 1388 1389 1390 1391 1392
	if (err)
		goto out;

	dentry = fhp->fh_dentry;
	dirp = dentry->d_inode;

	/* Get all the sanity checks out of the way before
	 * we lock the parent. */
	err = nfserr_notdir;
A
Al Viro 已提交
1393
	if (!dirp->i_op->lookup)
L
Linus Torvalds 已提交
1394
		goto out;
P
Peter Zijlstra 已提交
1395
	fh_lock_nested(fhp, I_MUTEX_PARENT);
L
Linus Torvalds 已提交
1396 1397 1398 1399 1400

	/*
	 * Compose the response file handle.
	 */
	dchild = lookup_one_len(fname, dentry, flen);
1401
	host_err = PTR_ERR(dchild);
L
Linus Torvalds 已提交
1402 1403 1404 1405 1406 1407 1408 1409
	if (IS_ERR(dchild))
		goto out_nfserr;

	err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
	if (err)
		goto out;

	if (createmode == NFS3_CREATE_EXCLUSIVE) {
1410
		/* solaris7 gets confused (bugid 4218508) if these have
1411 1412 1413 1414
		 * the high bit set, so just clear the high bits. If this is
		 * ever changed to use different attrs for storing the
		 * verifier, then do_open_lookup() will also need to be fixed
		 * accordingly.
L
Linus Torvalds 已提交
1415 1416 1417 1418 1419
		 */
		v_mtime = verifier[0]&0x7fffffff;
		v_atime = verifier[1]&0x7fffffff;
	}
	
1420 1421 1422
	host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
	if (host_err)
		goto out_nfserr;
L
Linus Torvalds 已提交
1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
	if (dchild->d_inode) {
		err = 0;

		switch (createmode) {
		case NFS3_CREATE_UNCHECKED:
			if (! S_ISREG(dchild->d_inode->i_mode))
				err = nfserr_exist;
			else if (truncp) {
				/* in nfsv4, we need to treat this case a little
				 * differently.  we don't want to truncate the
				 * file now; this would be wrong if the OPEN
				 * fails for some other reason.  furthermore,
				 * if the size is nonzero, we should ignore it
				 * according to spec!
				 */
				*truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
			}
			else {
				iap->ia_valid &= ATTR_SIZE;
				goto set_attr;
			}
			break;
		case NFS3_CREATE_EXCLUSIVE:
			if (   dchild->d_inode->i_mtime.tv_sec == v_mtime
			    && dchild->d_inode->i_atime.tv_sec == v_atime
			    && dchild->d_inode->i_size  == 0 )
				break;
			 /* fallthru */
		case NFS3_CREATE_GUARDED:
			err = nfserr_exist;
		}
1454
		mnt_drop_write(fhp->fh_export->ex_path.mnt);
L
Linus Torvalds 已提交
1455 1456 1457
		goto out;
	}

1458
	host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
1459 1460
	if (host_err < 0) {
		mnt_drop_write(fhp->fh_export->ex_path.mnt);
L
Linus Torvalds 已提交
1461
		goto out_nfserr;
1462
	}
1463 1464
	if (created)
		*created = 1;
L
Linus Torvalds 已提交
1465 1466

	if (EX_ISSYNC(fhp->fh_export)) {
1467
		err = nfserrno(nfsd_sync_dir(dentry));
L
Linus Torvalds 已提交
1468 1469 1470
		/* setattr will sync the child (or not) */
	}

1471 1472
	nfsd_check_ignore_resizing(iap);

L
Linus Torvalds 已提交
1473
	if (createmode == NFS3_CREATE_EXCLUSIVE) {
1474
		/* Cram the verifier into atime/mtime */
L
Linus Torvalds 已提交
1475
		iap->ia_valid = ATTR_MTIME|ATTR_ATIME
1476
			| ATTR_MTIME_SET|ATTR_ATIME_SET;
L
Linus Torvalds 已提交
1477 1478 1479 1480 1481 1482 1483 1484
		/* XXX someone who knows this better please fix it for nsec */ 
		iap->ia_mtime.tv_sec = v_mtime;
		iap->ia_atime.tv_sec = v_atime;
		iap->ia_mtime.tv_nsec = 0;
		iap->ia_atime.tv_nsec = 0;
	}

 set_attr:
1485 1486 1487
	err2 = nfsd_create_setattr(rqstp, resfhp, iap);
	if (err2)
		err = err2;
1488

1489
	mnt_drop_write(fhp->fh_export->ex_path.mnt);
1490 1491 1492 1493 1494
	/*
	 * Update the filehandle to get the new inode info.
	 */
	if (!err)
		err = fh_update(resfhp);
L
Linus Torvalds 已提交
1495 1496 1497 1498 1499 1500 1501 1502

 out:
	fh_unlock(fhp);
	if (dchild && !IS_ERR(dchild))
		dput(dchild);
 	return err;
 
 out_nfserr:
1503
	err = nfserrno(host_err);
L
Linus Torvalds 已提交
1504 1505 1506 1507 1508 1509 1510 1511 1512
	goto out;
}
#endif /* CONFIG_NFSD_V3 */

/*
 * Read a symlink. On entry, *lenp must contain the maximum path length that
 * fits into the buffer. On return, it contains the true length.
 * N.B. After this call fhp needs an fh_put
 */
1513
__be32
L
Linus Torvalds 已提交
1514 1515 1516 1517 1518
nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
{
	struct dentry	*dentry;
	struct inode	*inode;
	mm_segment_t	oldfs;
1519 1520
	__be32		err;
	int		host_err;
L
Linus Torvalds 已提交
1521

M
Miklos Szeredi 已提交
1522
	err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
L
Linus Torvalds 已提交
1523 1524 1525 1526 1527 1528 1529
	if (err)
		goto out;

	dentry = fhp->fh_dentry;
	inode = dentry->d_inode;

	err = nfserr_inval;
A
Al Viro 已提交
1530
	if (!inode->i_op->readlink)
L
Linus Torvalds 已提交
1531 1532
		goto out;

1533
	touch_atime(fhp->fh_export->ex_path.mnt, dentry);
L
Linus Torvalds 已提交
1534 1535 1536 1537 1538
	/* N.B. Why does this call need a get_fs()??
	 * Remove the set_fs and watch the fireworks:-) --okir
	 */

	oldfs = get_fs(); set_fs(KERNEL_DS);
1539
	host_err = inode->i_op->readlink(dentry, buf, *lenp);
L
Linus Torvalds 已提交
1540 1541
	set_fs(oldfs);

1542
	if (host_err < 0)
L
Linus Torvalds 已提交
1543
		goto out_nfserr;
1544
	*lenp = host_err;
L
Linus Torvalds 已提交
1545 1546 1547 1548 1549
	err = 0;
out:
	return err;

out_nfserr:
1550
	err = nfserrno(host_err);
L
Linus Torvalds 已提交
1551 1552 1553 1554 1555 1556 1557
	goto out;
}

/*
 * Create a symlink and look up its inode
 * N.B. After this call _both_ fhp and resfhp need an fh_put
 */
1558
__be32
L
Linus Torvalds 已提交
1559 1560 1561 1562 1563 1564 1565
nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
				char *fname, int flen,
				char *path,  int plen,
				struct svc_fh *resfhp,
				struct iattr *iap)
{
	struct dentry	*dentry, *dnew;
1566 1567
	__be32		err, cerr;
	int		host_err;
L
Linus Torvalds 已提交
1568 1569 1570 1571 1572 1573 1574 1575

	err = nfserr_noent;
	if (!flen || !plen)
		goto out;
	err = nfserr_exist;
	if (isdotent(fname, flen))
		goto out;

M
Miklos Szeredi 已提交
1576
	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
L
Linus Torvalds 已提交
1577 1578 1579 1580 1581
	if (err)
		goto out;
	fh_lock(fhp);
	dentry = fhp->fh_dentry;
	dnew = lookup_one_len(fname, dentry, flen);
1582
	host_err = PTR_ERR(dnew);
L
Linus Torvalds 已提交
1583 1584 1585
	if (IS_ERR(dnew))
		goto out_nfserr;

1586 1587 1588 1589
	host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
	if (host_err)
		goto out_nfserr;

L
Linus Torvalds 已提交
1590 1591 1592
	if (unlikely(path[plen] != 0)) {
		char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
		if (path_alloced == NULL)
1593
			host_err = -ENOMEM;
L
Linus Torvalds 已提交
1594 1595 1596
		else {
			strncpy(path_alloced, path, plen);
			path_alloced[plen] = 0;
1597
			host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
L
Linus Torvalds 已提交
1598 1599 1600
			kfree(path_alloced);
		}
	} else
1601
		host_err = vfs_symlink(dentry->d_inode, dnew, path);
L
Linus Torvalds 已提交
1602

1603
	if (!host_err) {
L
Linus Torvalds 已提交
1604
		if (EX_ISSYNC(fhp->fh_export))
1605 1606 1607
			host_err = nfsd_sync_dir(dentry);
	}
	err = nfserrno(host_err);
L
Linus Torvalds 已提交
1608 1609
	fh_unlock(fhp);

1610 1611
	mnt_drop_write(fhp->fh_export->ex_path.mnt);

L
Linus Torvalds 已提交
1612 1613 1614 1615 1616 1617 1618
	cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
	dput(dnew);
	if (err==0) err = cerr;
out:
	return err;

out_nfserr:
1619
	err = nfserrno(host_err);
L
Linus Torvalds 已提交
1620 1621 1622 1623 1624 1625 1626
	goto out;
}

/*
 * Create a hardlink
 * N.B. After this call _both_ ffhp and tfhp need an fh_put
 */
1627
__be32
L
Linus Torvalds 已提交
1628 1629 1630 1631 1632
nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
				char *name, int len, struct svc_fh *tfhp)
{
	struct dentry	*ddir, *dnew, *dold;
	struct inode	*dirp, *dest;
1633 1634
	__be32		err;
	int		host_err;
L
Linus Torvalds 已提交
1635

M
Miklos Szeredi 已提交
1636
	err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
L
Linus Torvalds 已提交
1637 1638
	if (err)
		goto out;
M
Miklos Szeredi 已提交
1639
	err = fh_verify(rqstp, tfhp, -S_IFDIR, NFSD_MAY_NOP);
L
Linus Torvalds 已提交
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
	if (err)
		goto out;

	err = nfserr_perm;
	if (!len)
		goto out;
	err = nfserr_exist;
	if (isdotent(name, len))
		goto out;

P
Peter Zijlstra 已提交
1650
	fh_lock_nested(ffhp, I_MUTEX_PARENT);
L
Linus Torvalds 已提交
1651 1652 1653 1654
	ddir = ffhp->fh_dentry;
	dirp = ddir->d_inode;

	dnew = lookup_one_len(name, ddir, len);
1655
	host_err = PTR_ERR(dnew);
L
Linus Torvalds 已提交
1656 1657 1658 1659 1660 1661
	if (IS_ERR(dnew))
		goto out_nfserr;

	dold = tfhp->fh_dentry;
	dest = dold->d_inode;

1662 1663 1664 1665 1666
	host_err = mnt_want_write(tfhp->fh_export->ex_path.mnt);
	if (host_err) {
		err = nfserrno(host_err);
		goto out_dput;
	}
1667 1668
	host_err = vfs_link(dold, dirp, dnew);
	if (!host_err) {
L
Linus Torvalds 已提交
1669
		if (EX_ISSYNC(ffhp->fh_export)) {
1670
			err = nfserrno(nfsd_sync_dir(ddir));
L
Linus Torvalds 已提交
1671 1672
			write_inode_now(dest, 1);
		}
1673
		err = 0;
L
Linus Torvalds 已提交
1674
	} else {
1675
		if (host_err == -EXDEV && rqstp->rq_vers == 2)
L
Linus Torvalds 已提交
1676 1677
			err = nfserr_acces;
		else
1678
			err = nfserrno(host_err);
L
Linus Torvalds 已提交
1679
	}
1680 1681
	mnt_drop_write(tfhp->fh_export->ex_path.mnt);
out_dput:
L
Linus Torvalds 已提交
1682
	dput(dnew);
1683 1684
out_unlock:
	fh_unlock(ffhp);
L
Linus Torvalds 已提交
1685 1686 1687 1688
out:
	return err;

out_nfserr:
1689
	err = nfserrno(host_err);
1690
	goto out_unlock;
L
Linus Torvalds 已提交
1691 1692 1693 1694 1695 1696
}

/*
 * Rename a file
 * N.B. After this call _both_ ffhp and tfhp need an fh_put
 */
1697
__be32
L
Linus Torvalds 已提交
1698 1699 1700 1701 1702
nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
			    struct svc_fh *tfhp, char *tname, int tlen)
{
	struct dentry	*fdentry, *tdentry, *odentry, *ndentry, *trap;
	struct inode	*fdir, *tdir;
1703 1704
	__be32		err;
	int		host_err;
L
Linus Torvalds 已提交
1705

M
Miklos Szeredi 已提交
1706
	err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
L
Linus Torvalds 已提交
1707 1708
	if (err)
		goto out;
M
Miklos Szeredi 已提交
1709
	err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
L
Linus Torvalds 已提交
1710 1711 1712 1713 1714 1715 1716 1717 1718 1719
	if (err)
		goto out;

	fdentry = ffhp->fh_dentry;
	fdir = fdentry->d_inode;

	tdentry = tfhp->fh_dentry;
	tdir = tdentry->d_inode;

	err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
1720
	if (ffhp->fh_export != tfhp->fh_export)
L
Linus Torvalds 已提交
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734
		goto out;

	err = nfserr_perm;
	if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
		goto out;

	/* cannot use fh_lock as we need deadlock protective ordering
	 * so do it by hand */
	trap = lock_rename(tdentry, fdentry);
	ffhp->fh_locked = tfhp->fh_locked = 1;
	fill_pre_wcc(ffhp);
	fill_pre_wcc(tfhp);

	odentry = lookup_one_len(fname, fdentry, flen);
1735
	host_err = PTR_ERR(odentry);
L
Linus Torvalds 已提交
1736 1737 1738
	if (IS_ERR(odentry))
		goto out_nfserr;

1739
	host_err = -ENOENT;
L
Linus Torvalds 已提交
1740 1741
	if (!odentry->d_inode)
		goto out_dput_old;
1742
	host_err = -EINVAL;
L
Linus Torvalds 已提交
1743 1744 1745 1746
	if (odentry == trap)
		goto out_dput_old;

	ndentry = lookup_one_len(tname, tdentry, tlen);
1747
	host_err = PTR_ERR(ndentry);
L
Linus Torvalds 已提交
1748 1749
	if (IS_ERR(ndentry))
		goto out_dput_old;
1750
	host_err = -ENOTEMPTY;
L
Linus Torvalds 已提交
1751 1752 1753
	if (ndentry == trap)
		goto out_dput_new;

1754
	if (svc_msnfs(ffhp) &&
L
Linus Torvalds 已提交
1755 1756
		((atomic_read(&odentry->d_count) > 1)
		 || (atomic_read(&ndentry->d_count) > 1))) {
1757
			host_err = -EPERM;
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
			goto out_dput_new;
	}

	host_err = -EXDEV;
	if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
		goto out_dput_new;
	host_err = mnt_want_write(ffhp->fh_export->ex_path.mnt);
	if (host_err)
		goto out_dput_new;

1768 1769 1770 1771 1772
	host_err = vfs_rename(fdir, odentry, tdir, ndentry);
	if (!host_err && EX_ISSYNC(tfhp->fh_export)) {
		host_err = nfsd_sync_dir(tdentry);
		if (!host_err)
			host_err = nfsd_sync_dir(fdentry);
L
Linus Torvalds 已提交
1773 1774
	}

1775 1776
	mnt_drop_write(ffhp->fh_export->ex_path.mnt);

L
Linus Torvalds 已提交
1777 1778 1779 1780 1781
 out_dput_new:
	dput(ndentry);
 out_dput_old:
	dput(odentry);
 out_nfserr:
1782
	err = nfserrno(host_err);
L
Linus Torvalds 已提交
1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800

	/* we cannot reply on fh_unlock on the two filehandles,
	 * as that would do the wrong thing if the two directories
	 * were the same, so again we do it by hand
	 */
	fill_post_wcc(ffhp);
	fill_post_wcc(tfhp);
	unlock_rename(tdentry, fdentry);
	ffhp->fh_locked = tfhp->fh_locked = 0;

out:
	return err;
}

/*
 * Unlink a file or directory
 * N.B. After this call fhp needs an fh_put
 */
1801
__be32
L
Linus Torvalds 已提交
1802 1803 1804 1805 1806
nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
				char *fname, int flen)
{
	struct dentry	*dentry, *rdentry;
	struct inode	*dirp;
1807 1808
	__be32		err;
	int		host_err;
L
Linus Torvalds 已提交
1809 1810 1811 1812

	err = nfserr_acces;
	if (!flen || isdotent(fname, flen))
		goto out;
M
Miklos Szeredi 已提交
1813
	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
L
Linus Torvalds 已提交
1814 1815 1816
	if (err)
		goto out;

P
Peter Zijlstra 已提交
1817
	fh_lock_nested(fhp, I_MUTEX_PARENT);
L
Linus Torvalds 已提交
1818 1819 1820 1821
	dentry = fhp->fh_dentry;
	dirp = dentry->d_inode;

	rdentry = lookup_one_len(fname, dentry, flen);
1822
	host_err = PTR_ERR(rdentry);
L
Linus Torvalds 已提交
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834
	if (IS_ERR(rdentry))
		goto out_nfserr;

	if (!rdentry->d_inode) {
		dput(rdentry);
		err = nfserr_noent;
		goto out;
	}

	if (!type)
		type = rdentry->d_inode->i_mode & S_IFMT;

1835 1836 1837 1838
	host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
	if (host_err)
		goto out_nfserr;

L
Linus Torvalds 已提交
1839 1840 1841 1842
	if (type != S_IFDIR) { /* It's UNLINK */
#ifdef MSNFS
		if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
			(atomic_read(&rdentry->d_count) > 1)) {
1843
			host_err = -EPERM;
L
Linus Torvalds 已提交
1844 1845
		} else
#endif
1846
		host_err = vfs_unlink(dirp, rdentry);
L
Linus Torvalds 已提交
1847
	} else { /* It's RMDIR */
1848
		host_err = vfs_rmdir(dirp, rdentry);
L
Linus Torvalds 已提交
1849 1850 1851 1852
	}

	dput(rdentry);

1853
	if (host_err)
1854
		goto out_drop;
1855 1856
	if (EX_ISSYNC(fhp->fh_export))
		host_err = nfsd_sync_dir(dentry);
L
Linus Torvalds 已提交
1857

1858 1859
out_drop:
	mnt_drop_write(fhp->fh_export->ex_path.mnt);
L
Linus Torvalds 已提交
1860
out_nfserr:
1861
	err = nfserrno(host_err);
1862 1863
out:
	return err;
L
Linus Torvalds 已提交
1864 1865
}

1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883
/*
 * We do this buffering because we must not call back into the file
 * system's ->lookup() method from the filldir callback. That may well
 * deadlock a number of file systems.
 *
 * This is based heavily on the implementation of same in XFS.
 */
struct buffered_dirent {
	u64		ino;
	loff_t		offset;
	int		namlen;
	unsigned int	d_type;
	char		name[];
};

struct readdir_data {
	char		*dirent;
	size_t		used;
1884
	int		full;
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894
};

static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
				 loff_t offset, u64 ino, unsigned int d_type)
{
	struct readdir_data *buf = __buf;
	struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
	unsigned int reclen;

	reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
1895 1896
	if (buf->used + reclen > PAGE_SIZE) {
		buf->full = 1;
1897
		return -EINVAL;
1898
	}
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909

	de->namlen = namlen;
	de->offset = offset;
	de->ino = ino;
	de->d_type = d_type;
	memcpy(de->name, name, namlen);
	buf->used += reclen;

	return 0;
}

1910 1911
static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
				    struct readdir_cd *cdp, loff_t *offsetp)
1912
{
1913 1914
	struct readdir_data buf;
	struct buffered_dirent *de;
1915
	int host_err;
1916 1917
	int size;
	loff_t offset;
1918

1919 1920
	buf.dirent = (void *)__get_free_page(GFP_KERNEL);
	if (!buf.dirent)
1921
		return nfserrno(-ENOMEM);
1922 1923

	offset = *offsetp;
1924

1925
	while (1) {
1926
		struct inode *dir_inode = file->f_path.dentry->d_inode;
1927 1928
		unsigned int reclen;

1929
		cdp->err = nfserr_eof; /* will be cleared on successful read */
1930
		buf.used = 0;
1931
		buf.full = 0;
1932 1933

		host_err = vfs_readdir(file, nfsd_buffered_filldir, &buf);
1934 1935 1936 1937
		if (buf.full)
			host_err = 0;

		if (host_err < 0)
1938 1939 1940 1941 1942 1943 1944
			break;

		size = buf.used;

		if (!size)
			break;

1945 1946 1947 1948 1949 1950 1951 1952 1953
		/*
		 * Various filldir functions may end up calling back into
		 * lookup_one_len() and the file system's ->lookup() method.
		 * These expect i_mutex to be held, as it would within readdir.
		 */
		host_err = mutex_lock_killable(&dir_inode->i_mutex);
		if (host_err)
			break;

1954 1955 1956 1957 1958 1959
		de = (struct buffered_dirent *)buf.dirent;
		while (size > 0) {
			offset = de->offset;

			if (func(cdp, de->name, de->namlen, de->offset,
				 de->ino, de->d_type))
1960
				break;
1961 1962

			if (cdp->err != nfs_ok)
1963
				break;
1964 1965 1966 1967 1968 1969

			reclen = ALIGN(sizeof(*de) + de->namlen,
				       sizeof(u64));
			size -= reclen;
			de = (struct buffered_dirent *)((char *)de + reclen);
		}
1970 1971 1972 1973
		mutex_unlock(&dir_inode->i_mutex);
		if (size > 0) /* We bailed out early */
			break;

1974
		offset = vfs_llseek(file, 0, SEEK_CUR);
1975 1976 1977
	}

	free_page((unsigned long)(buf.dirent));
1978 1979 1980

	if (host_err)
		return nfserrno(host_err);
1981 1982 1983

	*offsetp = offset;
	return cdp->err;
1984 1985
}

L
Linus Torvalds 已提交
1986 1987 1988 1989
/*
 * Read entries from a directory.
 * The  NFSv3/4 verifier we ignore for now.
 */
1990
__be32
L
Linus Torvalds 已提交
1991
nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp, 
1992
	     struct readdir_cd *cdp, filldir_t func)
L
Linus Torvalds 已提交
1993
{
1994
	__be32		err;
L
Linus Torvalds 已提交
1995 1996 1997
	struct file	*file;
	loff_t		offset = *offsetp;

M
Miklos Szeredi 已提交
1998
	err = nfsd_open(rqstp, fhp, S_IFDIR, NFSD_MAY_READ, &file);
L
Linus Torvalds 已提交
1999 2000 2001 2002 2003 2004 2005 2006 2007
	if (err)
		goto out;

	offset = vfs_llseek(file, offset, 0);
	if (offset < 0) {
		err = nfserrno((int)offset);
		goto out_close;
	}

2008
	err = nfsd_buffered_readdir(file, func, cdp, offsetp);
L
Linus Torvalds 已提交
2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021

	if (err == nfserr_eof || err == nfserr_toosmall)
		err = nfs_ok; /* can still be found in ->err */
out_close:
	nfsd_close(file);
out:
	return err;
}

/*
 * Get file system stats
 * N.B. After this call fhp needs an fh_put
 */
2022
__be32
2023
nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
L
Linus Torvalds 已提交
2024
{
2025
	__be32 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
2026
	if (!err && vfs_statfs(fhp->fh_dentry,stat))
L
Linus Torvalds 已提交
2027 2028 2029 2030
		err = nfserr_io;
	return err;
}

J
J. Bruce Fields 已提交
2031
static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
2032
{
J
J. Bruce Fields 已提交
2033
	return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
2034 2035
}

L
Linus Torvalds 已提交
2036 2037 2038
/*
 * Check for a user's access permissions to this inode.
 */
2039
__be32
2040 2041
nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
					struct dentry *dentry, int acc)
L
Linus Torvalds 已提交
2042 2043
{
	struct inode	*inode = dentry->d_inode;
M
Mimi Zohar 已提交
2044
	struct path	path;
L
Linus Torvalds 已提交
2045 2046
	int		err;

M
Miklos Szeredi 已提交
2047
	if (acc == NFSD_MAY_NOP)
L
Linus Torvalds 已提交
2048 2049 2050 2051
		return 0;
#if 0
	dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
		acc,
M
Miklos Szeredi 已提交
2052 2053 2054 2055 2056 2057 2058
		(acc & NFSD_MAY_READ)?	" read"  : "",
		(acc & NFSD_MAY_WRITE)?	" write" : "",
		(acc & NFSD_MAY_EXEC)?	" exec"  : "",
		(acc & NFSD_MAY_SATTR)?	" sattr" : "",
		(acc & NFSD_MAY_TRUNC)?	" trunc" : "",
		(acc & NFSD_MAY_LOCK)?	" lock"  : "",
		(acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
L
Linus Torvalds 已提交
2059 2060 2061
		inode->i_mode,
		IS_IMMUTABLE(inode)?	" immut" : "",
		IS_APPEND(inode)?	" append" : "",
2062
		__mnt_is_readonly(exp->ex_path.mnt)?	" ro" : "");
L
Linus Torvalds 已提交
2063
	dprintk("      owner %d/%d user %d/%d\n",
2064
		inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
L
Linus Torvalds 已提交
2065 2066 2067 2068 2069 2070
#endif

	/* Normally we reject any write/sattr etc access on a read-only file
	 * system.  But if it is IRIX doing check on write-access for a 
	 * device special file, we ignore rofs.
	 */
M
Miklos Szeredi 已提交
2071 2072
	if (!(acc & NFSD_MAY_LOCAL_ACCESS))
		if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
2073 2074
			if (exp_rdonly(rqstp, exp) ||
			    __mnt_is_readonly(exp->ex_path.mnt))
L
Linus Torvalds 已提交
2075
				return nfserr_rofs;
M
Miklos Szeredi 已提交
2076
			if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
L
Linus Torvalds 已提交
2077 2078
				return nfserr_perm;
		}
M
Miklos Szeredi 已提交
2079
	if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
L
Linus Torvalds 已提交
2080 2081
		return nfserr_perm;

M
Miklos Szeredi 已提交
2082
	if (acc & NFSD_MAY_LOCK) {
L
Linus Torvalds 已提交
2083 2084 2085 2086 2087 2088 2089
		/* If we cannot rely on authentication in NLM requests,
		 * just allow locks, otherwise require read permission, or
		 * ownership
		 */
		if (exp->ex_flags & NFSEXP_NOAUTHNLM)
			return 0;
		else
M
Miklos Szeredi 已提交
2090
			acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
L
Linus Torvalds 已提交
2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105
	}
	/*
	 * The file owner always gets access permission for accesses that
	 * would normally be checked at open time. This is to make
	 * file access work even when the client has done a fchmod(fd, 0).
	 *
	 * However, `cp foo bar' should fail nevertheless when bar is
	 * readonly. A sensible way to do this might be to reject all
	 * attempts to truncate a read-only file, because a creat() call
	 * always implies file truncation.
	 * ... but this isn't really fair.  A process may reasonably call
	 * ftruncate on an open file descriptor on a file with perm 000.
	 * We must trust the client to do permission checking - using "ACCESS"
	 * with NFSv3.
	 */
M
Miklos Szeredi 已提交
2106
	if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
2107
	    inode->i_uid == current_fsuid())
L
Linus Torvalds 已提交
2108 2109
		return 0;

M
Miklos Szeredi 已提交
2110
	/* This assumes  NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
2111
	err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
L
Linus Torvalds 已提交
2112 2113 2114

	/* Allow read access to binaries even when mode 111 */
	if (err == -EACCES && S_ISREG(inode->i_mode) &&
M
Miklos Szeredi 已提交
2115
	    acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE))
2116
		err = inode_permission(inode, MAY_EXEC);
M
Mimi Zohar 已提交
2117 2118
	if (err)
		goto nfsd_out;
L
Linus Torvalds 已提交
2119

M
Mimi Zohar 已提交
2120 2121 2122 2123 2124
	/* Do integrity (permission) checking now, but defer incrementing
	 * IMA counts to the actual file open.
	 */
	path.mnt = exp->ex_path.mnt;
	path.dentry = dentry;
2125
	err = ima_path_check(&path, acc & (MAY_READ | MAY_WRITE | MAY_EXEC));
M
Mimi Zohar 已提交
2126
nfsd_out:
L
Linus Torvalds 已提交
2127 2128 2129 2130 2131 2132
	return err? nfserrno(err) : 0;
}

void
nfsd_racache_shutdown(void)
{
2133 2134 2135
	struct raparms *raparm, *last_raparm;
	unsigned int i;

L
Linus Torvalds 已提交
2136
	dprintk("nfsd: freeing readahead buffers.\n");
2137 2138 2139 2140 2141 2142 2143 2144 2145 2146

	for (i = 0; i < RAPARM_HASH_SIZE; i++) {
		raparm = raparm_hash[i].pb_head;
		while(raparm) {
			last_raparm = raparm;
			raparm = raparm->p_next;
			kfree(last_raparm);
		}
		raparm_hash[i].pb_head = NULL;
	}
L
Linus Torvalds 已提交
2147 2148 2149 2150 2151 2152 2153 2154
}
/*
 * Initialize readahead param cache
 */
int
nfsd_racache_init(int cache_size)
{
	int	i;
2155 2156
	int	j = 0;
	int	nperbucket;
2157
	struct raparms **raparm = NULL;
L
Linus Torvalds 已提交
2158

2159

2160
	if (raparm_hash[0].pb_head)
L
Linus Torvalds 已提交
2161
		return 0;
2162 2163 2164 2165
	nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
	if (nperbucket < 2)
		nperbucket = 2;
	cache_size = nperbucket * RAPARM_HASH_SIZE;
2166 2167

	dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
2168 2169

	for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2170
		spin_lock_init(&raparm_hash[i].pb_lock);
2171 2172 2173 2174 2175 2176 2177 2178 2179

		raparm = &raparm_hash[i].pb_head;
		for (j = 0; j < nperbucket; j++) {
			*raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
			if (!*raparm)
				goto out_nomem;
			raparm = &(*raparm)->p_next;
		}
		*raparm = NULL;
2180 2181
	}

L
Linus Torvalds 已提交
2182 2183
	nfsdstats.ra_size = cache_size;
	return 0;
2184 2185 2186 2187 2188

out_nomem:
	dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
	nfsd_racache_shutdown();
	return -ENOMEM;
L
Linus Torvalds 已提交
2189
}
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200

#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
struct posix_acl *
nfsd_get_posix_acl(struct svc_fh *fhp, int type)
{
	struct inode *inode = fhp->fh_dentry->d_inode;
	char *name;
	void *value = NULL;
	ssize_t size;
	struct posix_acl *acl;

2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
	if (!IS_POSIXACL(inode))
		return ERR_PTR(-EOPNOTSUPP);

	switch (type) {
	case ACL_TYPE_ACCESS:
		name = POSIX_ACL_XATTR_ACCESS;
		break;
	case ACL_TYPE_DEFAULT:
		name = POSIX_ACL_XATTR_DEFAULT;
		break;
	default:
2212 2213 2214
		return ERR_PTR(-EOPNOTSUPP);
	}

2215 2216 2217
	size = nfsd_getxattr(fhp->fh_dentry, name, &value);
	if (size < 0)
		return ERR_PTR(size);
2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232

	acl = posix_acl_from_xattr(value, size);
	kfree(value);
	return acl;
}

int
nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
{
	struct inode *inode = fhp->fh_dentry->d_inode;
	char *name;
	void *value = NULL;
	size_t size;
	int error;

A
Al Viro 已提交
2233
	if (!IS_POSIXACL(inode) ||
2234 2235 2236 2237
	    !inode->i_op->setxattr || !inode->i_op->removexattr)
		return -EOPNOTSUPP;
	switch(type) {
		case ACL_TYPE_ACCESS:
2238
			name = POSIX_ACL_XATTR_ACCESS;
2239 2240
			break;
		case ACL_TYPE_DEFAULT:
2241
			name = POSIX_ACL_XATTR_DEFAULT;
2242 2243 2244 2245 2246 2247
			break;
		default:
			return -EOPNOTSUPP;
	}

	if (acl && acl->a_count) {
2248
		size = posix_acl_xattr_size(acl->a_count);
2249 2250 2251
		value = kmalloc(size, GFP_KERNEL);
		if (!value)
			return -ENOMEM;
2252 2253
		error = posix_acl_to_xattr(acl, value, size);
		if (error < 0)
2254
			goto getout;
2255
		size = error;
2256 2257 2258
	} else
		size = 0;

2259 2260 2261
	error = mnt_want_write(fhp->fh_export->ex_path.mnt);
	if (error)
		goto getout;
2262
	if (size)
2263
		error = vfs_setxattr(fhp->fh_dentry, name, value, size, 0);
2264 2265 2266 2267
	else {
		if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
			error = 0;
		else {
2268
			error = vfs_removexattr(fhp->fh_dentry, name);
2269 2270 2271 2272
			if (error == -ENODATA)
				error = 0;
		}
	}
2273
	mnt_drop_write(fhp->fh_export->ex_path.mnt);
2274 2275 2276 2277 2278 2279

getout:
	kfree(value);
	return error;
}
#endif  /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */