super.c 26.1 KB
Newer Older
D
David Howells 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *  linux/fs/nfs/super.c
 *
 *  Copyright (C) 1992  Rick Sladkey
 *
 *  nfs superblock handling functions
 *
 *  Modularised by Alan Cox <Alan.Cox@linux.org>, while hacking some
 *  experimental NFS changes. Modularisation taken straight from SYS5 fs.
 *
 *  Change to nfs_read_super() to permit NFS mounts to multi-homed hosts.
 *  J.S.Peatfield@damtp.cam.ac.uk
 *
 *  Split from inode.c by David Howells <dhowells@redhat.com>
 *
16 17 18 19 20
 * - superblocks are indexed on server only - all inodes, dentries, etc. associated with a
 *   particular server are held in the same superblock
 * - NFS superblocks can have several effective roots to the dentry tree
 * - directory type roots are spliced into the tree when a path from one root reaches the root
 *   of another (see nfs_lookup())
D
David Howells 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 */

#include <linux/module.h>
#include <linux/init.h>

#include <linux/time.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/string.h>
#include <linux/stat.h>
#include <linux/errno.h>
#include <linux/unistd.h>
#include <linux/sunrpc/clnt.h>
#include <linux/sunrpc/stats.h>
#include <linux/sunrpc/metrics.h>
#include <linux/nfs_fs.h>
#include <linux/nfs_mount.h>
#include <linux/nfs4_mount.h>
#include <linux/lockd/bind.h>
#include <linux/smp_lock.h>
#include <linux/seq_file.h>
#include <linux/mount.h>
#include <linux/nfs_idmap.h>
#include <linux/vfs.h>
#include <linux/inet.h>
#include <linux/nfs_xdr.h>
47
#include <linux/magic.h>
D
David Howells 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60

#include <asm/system.h>
#include <asm/uaccess.h>

#include "nfs4_fs.h"
#include "callback.h"
#include "delegation.h"
#include "iostat.h"
#include "internal.h"

#define NFSDBG_FACILITY		NFSDBG_VFS

static void nfs_umount_begin(struct vfsmount *, int);
61
static int  nfs_statfs(struct dentry *, struct kstatfs *);
D
David Howells 已提交
62 63
static int  nfs_show_options(struct seq_file *, struct vfsmount *);
static int  nfs_show_stats(struct seq_file *, struct vfsmount *);
64
static int nfs_get_sb(struct file_system_type *, int, const char *, void *, struct vfsmount *);
65
static int nfs_xdev_get_sb(struct file_system_type *fs_type,
66
		int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
D
David Howells 已提交
67 68 69 70 71 72 73
static void nfs_kill_super(struct super_block *);

static struct file_system_type nfs_fs_type = {
	.owner		= THIS_MODULE,
	.name		= "nfs",
	.get_sb		= nfs_get_sb,
	.kill_sb	= nfs_kill_super,
74
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
75 76
};

77
struct file_system_type nfs_xdev_fs_type = {
D
David Howells 已提交
78 79
	.owner		= THIS_MODULE,
	.name		= "nfs",
80
	.get_sb		= nfs_xdev_get_sb,
D
David Howells 已提交
81
	.kill_sb	= nfs_kill_super,
82
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
83 84
};

85
static const struct super_operations nfs_sops = {
D
David Howells 已提交
86 87 88 89 90 91 92 93 94 95 96
	.alloc_inode	= nfs_alloc_inode,
	.destroy_inode	= nfs_destroy_inode,
	.write_inode	= nfs_write_inode,
	.statfs		= nfs_statfs,
	.clear_inode	= nfs_clear_inode,
	.umount_begin	= nfs_umount_begin,
	.show_options	= nfs_show_options,
	.show_stats	= nfs_show_stats,
};

#ifdef CONFIG_NFS_V4
97 98
static int nfs4_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
99 100 101 102
static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
static int nfs4_referral_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
D
David Howells 已提交
103 104 105 106 107 108 109
static void nfs4_kill_super(struct super_block *sb);

static struct file_system_type nfs4_fs_type = {
	.owner		= THIS_MODULE,
	.name		= "nfs4",
	.get_sb		= nfs4_get_sb,
	.kill_sb	= nfs4_kill_super,
110
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
111 112
};

113
struct file_system_type nfs4_xdev_fs_type = {
D
David Howells 已提交
114 115
	.owner		= THIS_MODULE,
	.name		= "nfs4",
116
	.get_sb		= nfs4_xdev_get_sb,
D
David Howells 已提交
117
	.kill_sb	= nfs4_kill_super,
118
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
119 120
};

121
struct file_system_type nfs4_referral_fs_type = {
D
David Howells 已提交
122 123
	.owner		= THIS_MODULE,
	.name		= "nfs4",
124
	.get_sb		= nfs4_referral_get_sb,
D
David Howells 已提交
125
	.kill_sb	= nfs4_kill_super,
126
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
127 128
};

129
static const struct super_operations nfs4_sops = {
D
David Howells 已提交
130 131 132 133 134 135 136 137 138 139 140
	.alloc_inode	= nfs_alloc_inode,
	.destroy_inode	= nfs_destroy_inode,
	.write_inode	= nfs_write_inode,
	.statfs		= nfs_statfs,
	.clear_inode	= nfs4_clear_inode,
	.umount_begin	= nfs_umount_begin,
	.show_options	= nfs_show_options,
	.show_stats	= nfs_show_stats,
};
#endif

141 142
static struct shrinker *acl_shrinker;

D
David Howells 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156
/*
 * Register the NFS filesystems
 */
int __init register_nfs_fs(void)
{
	int ret;

        ret = register_filesystem(&nfs_fs_type);
	if (ret < 0)
		goto error_0;

	ret = nfs_register_sysctl();
	if (ret < 0)
		goto error_1;
157
#ifdef CONFIG_NFS_V4
D
David Howells 已提交
158 159 160 161
	ret = register_filesystem(&nfs4_fs_type);
	if (ret < 0)
		goto error_2;
#endif
162
	acl_shrinker = set_shrinker(DEFAULT_SEEKS, nfs_access_cache_shrinker);
D
David Howells 已提交
163 164 165 166 167
	return 0;

#ifdef CONFIG_NFS_V4
error_2:
	nfs_unregister_sysctl();
168
#endif
D
David Howells 已提交
169 170 171 172 173 174 175 176 177 178 179
error_1:
	unregister_filesystem(&nfs_fs_type);
error_0:
	return ret;
}

/*
 * Unregister the NFS filesystems
 */
void __exit unregister_nfs_fs(void)
{
180 181
	if (acl_shrinker != NULL)
		remove_shrinker(acl_shrinker);
D
David Howells 已提交
182 183 184 185 186 187 188 189 190 191
#ifdef CONFIG_NFS_V4
	unregister_filesystem(&nfs4_fs_type);
	nfs_unregister_sysctl();
#endif
	unregister_filesystem(&nfs_fs_type);
}

/*
 * Deliver file system statistics to userspace
 */
192
static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
D
David Howells 已提交
193
{
194
	struct nfs_server *server = NFS_SB(dentry->d_sb);
D
David Howells 已提交
195 196
	unsigned char blockbits;
	unsigned long blockres;
197
	struct nfs_fh *fh = NFS_FH(dentry->d_inode);
D
David Howells 已提交
198 199 200 201 202 203 204 205
	struct nfs_fattr fattr;
	struct nfs_fsstat res = {
			.fattr = &fattr,
	};
	int error;

	lock_kernel();

206
	error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
D
David Howells 已提交
207 208
	if (error < 0)
		goto out_err;
A
Amnon Aaronsohn 已提交
209
	buf->f_type = NFS_SUPER_MAGIC;
D
David Howells 已提交
210 211 212 213 214 215

	/*
	 * Current versions of glibc do not correctly handle the
	 * case where f_frsize != f_bsize.  Eventually we want to
	 * report the value of wtmult in this field.
	 */
216
	buf->f_frsize = dentry->d_sb->s_blocksize;
D
David Howells 已提交
217 218 219 220 221 222 223 224

	/*
	 * On most *nix systems, f_blocks, f_bfree, and f_bavail
	 * are reported in units of f_frsize.  Linux hasn't had
	 * an f_frsize field in its statfs struct until recently,
	 * thus historically Linux's sys_statfs reports these
	 * fields in units of f_bsize.
	 */
225 226
	buf->f_bsize = dentry->d_sb->s_blocksize;
	blockbits = dentry->d_sb->s_blocksize_bits;
D
David Howells 已提交
227 228 229 230 231 232 233 234 235
	blockres = (1 << blockbits) - 1;
	buf->f_blocks = (res.tbytes + blockres) >> blockbits;
	buf->f_bfree = (res.fbytes + blockres) >> blockbits;
	buf->f_bavail = (res.abytes + blockres) >> blockbits;

	buf->f_files = res.tfiles;
	buf->f_ffree = res.afiles;

	buf->f_namelen = server->namelen;
A
Amnon Aaronsohn 已提交
236

D
David Howells 已提交
237 238 239 240 241
	unlock_kernel();
	return 0;

 out_err:
	dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
A
Amnon Aaronsohn 已提交
242 243
	unlock_kernel();
	return error;
D
David Howells 已提交
244 245
}

246 247 248
/*
 * Map the security flavour number to a name
 */
249 250
static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
{
251
	static const struct {
252 253 254 255 256 257 258 259 260 261 262 263 264 265
		rpc_authflavor_t flavour;
		const char *str;
	} sec_flavours[] = {
		{ RPC_AUTH_NULL, "null" },
		{ RPC_AUTH_UNIX, "sys" },
		{ RPC_AUTH_GSS_KRB5, "krb5" },
		{ RPC_AUTH_GSS_KRB5I, "krb5i" },
		{ RPC_AUTH_GSS_KRB5P, "krb5p" },
		{ RPC_AUTH_GSS_LKEY, "lkey" },
		{ RPC_AUTH_GSS_LKEYI, "lkeyi" },
		{ RPC_AUTH_GSS_LKEYP, "lkeyp" },
		{ RPC_AUTH_GSS_SPKM, "spkm" },
		{ RPC_AUTH_GSS_SPKMI, "spkmi" },
		{ RPC_AUTH_GSS_SPKMP, "spkmp" },
266
		{ UINT_MAX, "unknown" }
267 268 269
	};
	int i;

270
	for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
271 272 273 274 275 276
		if (sec_flavours[i].flavour == flavour)
			break;
	}
	return sec_flavours[i].str;
}

D
David Howells 已提交
277 278 279 280 281
/*
 * Describe the mount options in force on this server representation
 */
static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, int showdefaults)
{
D
David Howells 已提交
282
	static const struct proc_nfs_info {
D
David Howells 已提交
283
		int flag;
D
David Howells 已提交
284 285
		const char *str;
		const char *nostr;
D
David Howells 已提交
286 287 288 289 290 291 292
	} nfs_info[] = {
		{ NFS_MOUNT_SOFT, ",soft", ",hard" },
		{ NFS_MOUNT_INTR, ",intr", "" },
		{ NFS_MOUNT_NOCTO, ",nocto", "" },
		{ NFS_MOUNT_NOAC, ",noac", "" },
		{ NFS_MOUNT_NONLM, ",nolock", "" },
		{ NFS_MOUNT_NOACL, ",noacl", "" },
293
		{ NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
D
David Howells 已提交
294 295
		{ 0, NULL, NULL }
	};
D
David Howells 已提交
296
	const struct proc_nfs_info *nfs_infop;
297
	struct nfs_client *clp = nfss->nfs_client;
D
David Howells 已提交
298
	char buf[12];
D
David Howells 已提交
299
	const char *proto;
D
David Howells 已提交
300

301
	seq_printf(m, ",vers=%d", clp->rpc_ops->version);
D
David Howells 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
	seq_printf(m, ",rsize=%d", nfss->rsize);
	seq_printf(m, ",wsize=%d", nfss->wsize);
	if (nfss->acregmin != 3*HZ || showdefaults)
		seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
	if (nfss->acregmax != 60*HZ || showdefaults)
		seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
	if (nfss->acdirmin != 30*HZ || showdefaults)
		seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
	if (nfss->acdirmax != 60*HZ || showdefaults)
		seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
	for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
		if (nfss->flags & nfs_infop->flag)
			seq_puts(m, nfs_infop->str);
		else
			seq_puts(m, nfs_infop->nostr);
	}
	switch (nfss->client->cl_xprt->prot) {
		case IPPROTO_TCP:
			proto = "tcp";
			break;
		case IPPROTO_UDP:
			proto = "udp";
			break;
		default:
			snprintf(buf, sizeof(buf), "%u", nfss->client->cl_xprt->prot);
			proto = buf;
	}
	seq_printf(m, ",proto=%s", proto);
330 331
	seq_printf(m, ",timeo=%lu", 10U * clp->retrans_timeo / HZ);
	seq_printf(m, ",retrans=%u", clp->retrans_count);
332
	seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
D
David Howells 已提交
333 334 335 336 337 338 339 340 341 342 343 344
}

/*
 * Describe the mount options on this VFS mountpoint
 */
static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
{
	struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);

	nfs_show_mount_options(m, nfss, 0);

	seq_puts(m, ",addr=");
345
	seq_escape(m, nfss->nfs_client->cl_hostname, " \t\n\\");
D
David Howells 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381

	return 0;
}

/*
 * Present statistical information for this VFS mountpoint
 */
static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
{
	int i, cpu;
	struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
	struct rpc_auth *auth = nfss->client->cl_auth;
	struct nfs_iostats totals = { };

	seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);

	/*
	 * Display all mount option settings
	 */
	seq_printf(m, "\n\topts:\t");
	seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
	seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
	seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
	seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
	nfs_show_mount_options(m, nfss, 1);

	seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);

	seq_printf(m, "\n\tcaps:\t");
	seq_printf(m, "caps=0x%x", nfss->caps);
	seq_printf(m, ",wtmult=%d", nfss->wtmult);
	seq_printf(m, ",dtsize=%d", nfss->dtsize);
	seq_printf(m, ",bsize=%d", nfss->bsize);
	seq_printf(m, ",namelen=%d", nfss->namelen);

#ifdef CONFIG_NFS_V4
382
	if (nfss->nfs_client->cl_nfsversion == 4) {
D
David Howells 已提交
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
		seq_printf(m, "\n\tnfsv4:\t");
		seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
		seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
		seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
	}
#endif

	/*
	 * Display security flavor in effect for this mount
	 */
	seq_printf(m, "\n\tsec:\tflavor=%d", auth->au_ops->au_flavor);
	if (auth->au_flavor)
		seq_printf(m, ",pseudoflavor=%d", auth->au_flavor);

	/*
	 * Display superblock I/O counters
	 */
	for_each_possible_cpu(cpu) {
		struct nfs_iostats *stats;

		preempt_disable();
		stats = per_cpu_ptr(nfss->io_stats, cpu);

		for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
			totals.events[i] += stats->events[i];
		for (i = 0; i < __NFSIOS_BYTESMAX; i++)
			totals.bytes[i] += stats->bytes[i];

		preempt_enable();
	}

	seq_printf(m, "\n\tevents:\t");
	for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
		seq_printf(m, "%lu ", totals.events[i]);
	seq_printf(m, "\n\tbytes:\t");
	for (i = 0; i < __NFSIOS_BYTESMAX; i++)
		seq_printf(m, "%Lu ", totals.bytes[i]);
	seq_printf(m, "\n");

	rpc_print_iostats(m, nfss->client);

	return 0;
}

/*
 * Begin unmount by attempting to remove all automounted mountpoints we added
429
 * in response to xdev traversals and referrals
D
David Howells 已提交
430 431 432
 */
static void nfs_umount_begin(struct vfsmount *vfsmnt, int flags)
{
T
Trond Myklebust 已提交
433 434 435
	struct nfs_server *server = NFS_SB(vfsmnt->mnt_sb);
	struct rpc_clnt *rpc;

D
David Howells 已提交
436
	shrink_submounts(vfsmnt, &nfs_automount_list);
T
Trond Myklebust 已提交
437 438 439 440 441 442 443 444 445 446

	if (!(flags & MNT_FORCE))
		return;
	/* -EIO all pending I/O */
	rpc = server->client_acl;
	if (!IS_ERR(rpc))
		rpc_killall_tasks(rpc);
	rpc = server->client;
	if (!IS_ERR(rpc))
		rpc_killall_tasks(rpc);
D
David Howells 已提交
447 448
}

449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
/*
 * Sanity-check a server address provided by the mount command
 */
static int nfs_verify_server_address(struct sockaddr *addr)
{
	switch (addr->sa_family) {
	case AF_INET: {
		struct sockaddr_in *sa = (struct sockaddr_in *) addr;
		if (sa->sin_addr.s_addr != INADDR_ANY)
			return 1;
		break;
	}
	}

	return 0;
}

D
David Howells 已提交
466
/*
467 468
 * Validate the NFS2/NFS3 mount data
 * - fills in the mount root filehandle
D
David Howells 已提交
469
 */
470 471
static int nfs_validate_mount_data(struct nfs_mount_data *data,
				   struct nfs_fh *mntfh)
D
David Howells 已提交
472
{
473 474
	if (data == NULL)
		goto out_no_data;
D
David Howells 已提交
475

476
	switch (data->version) {
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
	case 1:
		data->namlen = 0;
	case 2:
		data->bsize = 0;
	case 3:
		if (data->flags & NFS_MOUNT_VER3)
			goto out_no_v3;
		data->root.size = NFS2_FHSIZE;
		memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
	case 4:
		if (data->flags & NFS_MOUNT_SECFLAVOUR)
			goto out_no_sec;
	case 5:
		memset(data->context, 0, sizeof(data->context));
	case 6:
		if (data->flags & NFS_MOUNT_VER3)
			mntfh->size = data->root.size;
		else
			mntfh->size = NFS2_FHSIZE;

		if (mntfh->size > sizeof(mntfh->data))
			goto out_invalid_fh;

		memcpy(mntfh->data, data->root.data, mntfh->size);
		if (mntfh->size < sizeof(mntfh->data))
			memset(mntfh->data + mntfh->size, 0,
			       sizeof(mntfh->data) - mntfh->size);
		break;
	default:
		goto out_bad_version;
D
David Howells 已提交
507
	}
508

509 510 511
	if (!(data->flags & NFS_MOUNT_SECFLAVOUR))
		data->pseudoflavor = RPC_AUTH_UNIX;

512
#ifndef CONFIG_NFS_V3
513 514 515
	if (data->flags & NFS_MOUNT_VER3)
		goto out_v3_not_compiled;
#endif /* !CONFIG_NFS_V3 */
D
David Howells 已提交
516

517 518
	if (!nfs_verify_server_address((struct sockaddr *) &data->addr))
		goto out_no_address;
D
David Howells 已提交
519

520
	return 0;
D
David Howells 已提交
521

522 523 524
out_no_data:
	dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
	return -EINVAL;
525

526 527 528 529
out_no_v3:
	dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
		 data->version);
	return -EINVAL;
D
David Howells 已提交
530

531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
out_no_sec:
	dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
	return -EINVAL;

out_bad_version:
	dfprintk(MOUNT, "NFS: bad nfs_mount_data version %d\n",
		 data->version);
	return -EINVAL;

#ifndef CONFIG_NFS_V3
out_v3_not_compiled:
	dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
	return -EPROTONOSUPPORT;
#endif /* !CONFIG_NFS_V3 */

out_no_address:
	dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
	return -EINVAL;

out_invalid_fh:
	dfprintk(MOUNT, "NFS: invalid root filehandle\n");
	return -EINVAL;
D
David Howells 已提交
553 554 555
}

/*
556
 * Initialise the common bits of the superblock
D
David Howells 已提交
557
 */
558
static inline void nfs_initialise_sb(struct super_block *sb)
D
David Howells 已提交
559
{
560
	struct nfs_server *server = NFS_SB(sb);
561

562
	sb->s_magic = NFS_SUPER_MAGIC;
D
David Howells 已提交
563

564 565 566
	/* We probably want something more informative here */
	snprintf(sb->s_id, sizeof(sb->s_id),
		 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
567

568 569 570
	if (sb->s_blocksize == 0)
		sb->s_blocksize = nfs_block_bits(server->wsize,
						 &sb->s_blocksize_bits);
D
David Howells 已提交
571

572 573
	if (server->flags & NFS_MOUNT_NOAC)
		sb->s_flags |= MS_SYNCHRONOUS;
D
David Howells 已提交
574

575
	nfs_super_set_maxbytes(sb, server->maxfilesize);
D
David Howells 已提交
576 577 578
}

/*
579
 * Finish setting up an NFS2/3 superblock
D
David Howells 已提交
580
 */
581
static void nfs_fill_super(struct super_block *sb, struct nfs_mount_data *data)
D
David Howells 已提交
582 583
{
	struct nfs_server *server = NFS_SB(sb);
584

585 586 587 588
	sb->s_blocksize_bits = 0;
	sb->s_blocksize = 0;
	if (data->bsize)
		sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
D
David Howells 已提交
589

590 591 592 593 594 595
	if (server->flags & NFS_MOUNT_VER3) {
		/* The VFS shouldn't apply the umask to mode bits. We will do
		 * so ourselves when necessary.
		 */
		sb->s_flags |= MS_POSIXACL;
		sb->s_time_gran = 1;
596
	}
597 598 599

	sb->s_op = &nfs_sops;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
600 601 602
}

/*
603
 * Finish setting up a cloned NFS2/3 superblock
D
David Howells 已提交
604
 */
605 606
static void nfs_clone_super(struct super_block *sb,
			    const struct super_block *old_sb)
D
David Howells 已提交
607
{
608 609 610 611 612
	struct nfs_server *server = NFS_SB(sb);

	sb->s_blocksize_bits = old_sb->s_blocksize_bits;
	sb->s_blocksize = old_sb->s_blocksize;
	sb->s_maxbytes = old_sb->s_maxbytes;
D
David Howells 已提交
613 614

	if (server->flags & NFS_MOUNT_VER3) {
615 616
		/* The VFS shouldn't apply the umask to mode bits. We will do
		 * so ourselves when necessary.
D
David Howells 已提交
617 618 619 620 621
		 */
		sb->s_flags |= MS_POSIXACL;
		sb->s_time_gran = 1;
	}

622 623
	sb->s_op = old_sb->s_op;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
624 625
}

626
static int nfs_set_super(struct super_block *s, void *_server)
D
David Howells 已提交
627
{
628 629 630 631 632 633 634 635
	struct nfs_server *server = _server;
	int ret;

	s->s_fs_info = server;
	ret = set_anon_super(s, server);
	if (ret == 0)
		server->s_dev = s->s_dev;
	return ret;
D
David Howells 已提交
636 637 638 639
}

static int nfs_compare_super(struct super_block *sb, void *data)
{
640
	struct nfs_server *server = data, *old = NFS_SB(sb);
D
David Howells 已提交
641

642
	if (old->nfs_client != server->nfs_client)
D
David Howells 已提交
643
		return 0;
644
	if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
D
David Howells 已提交
645
		return 0;
646
	return 1;
D
David Howells 已提交
647 648
}

649 650
static int nfs_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
D
David Howells 已提交
651 652 653
{
	struct nfs_server *server = NULL;
	struct super_block *s;
654
	struct nfs_fh mntfh;
D
David Howells 已提交
655
	struct nfs_mount_data *data = raw_data;
656 657
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
658

659 660 661
	/* Validate the mount data */
	error = nfs_validate_mount_data(data, &mntfh);
	if (error < 0)
662
		goto out;
D
David Howells 已提交
663

664 665 666 667
	/* Get a volume representation */
	server = nfs_create_server(data, &mntfh);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
668
		goto out;
D
David Howells 已提交
669 670
	}

671
	/* Get a superblock - note that we may end up sharing one that already exists */
D
David Howells 已提交
672
	s = sget(fs_type, nfs_compare_super, nfs_set_super, server);
673 674
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
675
		goto out_err_nosb;
676 677
	}

678 679 680 681
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}
D
David Howells 已提交
682

683 684 685 686 687
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs_fill_super(s, data);
	}
D
David Howells 已提交
688

689 690 691 692
	mntroot = nfs_get_root(s, &mntfh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
693
	}
694

695 696 697
	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
698 699 700 701
	error = 0;

out:
	return error;
702

703 704
out_err_nosb:
	nfs_free_server(server);
705
	goto out;
706 707 708 709

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
710
	goto out;
D
David Howells 已提交
711 712
}

713 714 715
/*
 * Destroy an NFS2/3 superblock
 */
D
David Howells 已提交
716 717 718 719 720
static void nfs_kill_super(struct super_block *s)
{
	struct nfs_server *server = NFS_SB(s);

	kill_anon_super(s);
721
	nfs_free_server(server);
D
David Howells 已提交
722 723
}

724 725 726 727 728 729
/*
 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
 */
static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
			   const char *dev_name, void *raw_data,
			   struct vfsmount *mnt)
D
David Howells 已提交
730 731
{
	struct nfs_clone_mount *data = raw_data;
732 733 734 735
	struct super_block *s;
	struct nfs_server *server;
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
736

737
	dprintk("--> nfs_xdev_get_sb()\n");
D
David Howells 已提交
738

739 740 741 742 743 744
	/* create a new volume representation */
	server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
		goto out_err_noserver;
	}
745

746 747 748 749 750 751
	/* Get a superblock - note that we may end up sharing one that already exists */
	s = sget(&nfs_fs_type, nfs_compare_super, nfs_set_super, server);
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
		goto out_err_nosb;
	}
752

753 754 755
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
D
David Howells 已提交
756
	}
757

758 759 760 761 762
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs_clone_super(s, data->sb);
	}
D
David Howells 已提交
763

764 765 766 767
	mntroot = nfs_get_root(s, data->fh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
768 769
	}

770 771 772
	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
D
David Howells 已提交
773

774 775
	dprintk("<-- nfs_xdev_get_sb() = 0\n");
	return 0;
776

777 778 779 780 781
out_err_nosb:
	nfs_free_server(server);
out_err_noserver:
	dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
	return error;
D
David Howells 已提交
782

783 784 785 786 787
error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
	dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
	return error;
D
David Howells 已提交
788 789
}

790 791
#ifdef CONFIG_NFS_V4

D
David Howells 已提交
792
/*
793
 * Finish setting up a cloned NFS4 superblock
D
David Howells 已提交
794
 */
795 796
static void nfs4_clone_super(struct super_block *sb,
			    const struct super_block *old_sb)
D
David Howells 已提交
797
{
798 799 800
	sb->s_blocksize_bits = old_sb->s_blocksize_bits;
	sb->s_blocksize = old_sb->s_blocksize;
	sb->s_maxbytes = old_sb->s_maxbytes;
D
David Howells 已提交
801
	sb->s_time_gran = 1;
802 803
	sb->s_op = old_sb->s_op;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
804 805
}

806 807 808 809
/*
 * Set up an NFS4 superblock
 */
static void nfs4_fill_super(struct super_block *sb)
D
David Howells 已提交
810
{
811 812 813
	sb->s_time_gran = 1;
	sb->s_op = &nfs4_sops;
	nfs_initialise_sb(sb);
D
David Howells 已提交
814 815
}

816 817 818
/*
 * Get the superblock for an NFS4 mountpoint
 */
819 820
static int nfs4_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
D
David Howells 已提交
821 822
{
	struct nfs4_mount_data *data = raw_data;
823 824 825 826 827 828
	struct super_block *s;
	struct nfs_server *server;
	struct sockaddr_in addr;
	rpc_authflavor_t authflavour;
	struct nfs_fh mntfh;
	struct dentry *mntroot;
829
	char *p, *mntpath = NULL, *hostname = NULL, *ip_addr = NULL;
830
	int error;
D
David Howells 已提交
831 832 833

	if (data == NULL) {
		dprintk("%s: missing data argument\n", __FUNCTION__);
834
		return -EINVAL;
D
David Howells 已提交
835 836 837
	}
	if (data->version <= 0 || data->version > NFS4_MOUNT_VERSION) {
		dprintk("%s: bad mount version\n", __FUNCTION__);
838
		return -EINVAL;
D
David Howells 已提交
839 840
	}

841 842 843 844 845 846 847
	/* We now require that the mount process passes the remote address */
	if (data->host_addrlen != sizeof(addr))
		return -EINVAL;

	if (copy_from_user(&addr, data->host_addr, sizeof(addr)))
		return -EFAULT;

848
	if (!nfs_verify_server_address((struct sockaddr *) &addr)) {
849 850 851 852
		dprintk("%s: mount program didn't pass remote IP address!\n",
				__FUNCTION__);
		return -EINVAL;
	}
853

854 855
	/* RFC3530: The default port for NFS is 2049 */
	if (addr.sin_port == 0)
856
		addr.sin_port = htons(NFS_PORT);
857 858 859 860 861 862 863 864

	/* Grab the authentication type */
	authflavour = RPC_AUTH_UNIX;
	if (data->auth_flavourlen != 0) {
		if (data->auth_flavourlen != 1) {
			dprintk("%s: Invalid number of RPC auth flavours %d.\n",
					__FUNCTION__, data->auth_flavourlen);
			error = -EINVAL;
865
			goto out;
866 867 868 869 870
		}

		if (copy_from_user(&authflavour, data->auth_flavours,
				   sizeof(authflavour))) {
			error = -EFAULT;
871
			goto out;
872 873
		}
	}
D
David Howells 已提交
874

875
	p = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
D
David Howells 已提交
876 877
	if (IS_ERR(p))
		goto out_err;
878
	hostname = p;
D
David Howells 已提交
879

880
	p = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
D
David Howells 已提交
881 882
	if (IS_ERR(p))
		goto out_err;
883
	mntpath = p;
D
David Howells 已提交
884

885 886
	dprintk("MNTPATH: %s\n", mntpath);

887
	p = strndup_user(data->client_addr.data, 16);
D
David Howells 已提交
888 889
	if (IS_ERR(p))
		goto out_err;
890
	ip_addr = p;
D
David Howells 已提交
891

892 893 894 895 896
	/* Get a volume representation */
	server = nfs4_create_server(data, hostname, &addr, mntpath, ip_addr,
				    authflavour, &mntfh);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
897
		goto out;
D
David Howells 已提交
898 899
	}

900 901
	/* Get a superblock - note that we may end up sharing one that already exists */
	s = sget(fs_type, nfs_compare_super, nfs_set_super, server);
902 903
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
D
David Howells 已提交
904
		goto out_free;
905 906
	}

907 908 909 910 911
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}

912 913 914 915 916
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs4_fill_super(s);
	}
D
David Howells 已提交
917

918 919 920 921
	mntroot = nfs4_get_root(s, &mntfh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
922
	}
923

D
David Howells 已提交
924
	s->s_flags |= MS_ACTIVE;
925 926
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
927 928 929 930
	error = 0;

out:
	kfree(ip_addr);
931 932
	kfree(mntpath);
	kfree(hostname);
933
	return error;
934

D
David Howells 已提交
935
out_err:
936
	error = PTR_ERR(p);
937
	goto out;
938

D
David Howells 已提交
939
out_free:
940
	nfs_free_server(server);
941
	goto out;
942 943 944 945

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
946
	goto out;
D
David Howells 已提交
947 948 949 950 951 952 953 954 955 956
}

static void nfs4_kill_super(struct super_block *sb)
{
	struct nfs_server *server = NFS_SB(sb);

	nfs_return_all_delegations(sb);
	kill_anon_super(sb);

	nfs4_renewd_prepare_shutdown(server);
957
	nfs_free_server(server);
D
David Howells 已提交
958 959 960
}

/*
961
 * Clone an NFS4 server record on xdev traversal (FSID-change)
D
David Howells 已提交
962
 */
963 964 965
static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
			    const char *dev_name, void *raw_data,
			    struct vfsmount *mnt)
D
David Howells 已提交
966
{
967 968 969 970 971
	struct nfs_clone_mount *data = raw_data;
	struct super_block *s;
	struct nfs_server *server;
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
972

973
	dprintk("--> nfs4_xdev_get_sb()\n");
D
David Howells 已提交
974

975 976 977 978 979
	/* create a new volume representation */
	server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
		goto out_err_noserver;
D
David Howells 已提交
980 981
	}

982 983 984 985 986
	/* Get a superblock - note that we may end up sharing one that already exists */
	s = sget(&nfs_fs_type, nfs_compare_super, nfs_set_super, server);
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
		goto out_err_nosb;
D
David Howells 已提交
987 988
	}

989 990 991 992
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}
D
David Howells 已提交
993

994 995 996 997 998
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs4_clone_super(s, data->sb);
	}
D
David Howells 已提交
999

1000 1001 1002 1003 1004
	mntroot = nfs4_get_root(s, data->fh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
	}
D
David Howells 已提交
1005

1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;

	dprintk("<-- nfs4_xdev_get_sb() = 0\n");
	return 0;

out_err_nosb:
	nfs_free_server(server);
out_err_noserver:
	dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
	return error;

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
	dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
	return error;
D
David Howells 已提交
1024 1025
}

1026 1027 1028 1029 1030 1031
/*
 * Create an NFS4 server record on referral traversal
 */
static int nfs4_referral_get_sb(struct file_system_type *fs_type, int flags,
				const char *dev_name, void *raw_data,
				struct vfsmount *mnt)
D
David Howells 已提交
1032 1033
{
	struct nfs_clone_mount *data = raw_data;
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
	struct super_block *s;
	struct nfs_server *server;
	struct dentry *mntroot;
	struct nfs_fh mntfh;
	int error;

	dprintk("--> nfs4_referral_get_sb()\n");

	/* create a new volume representation */
	server = nfs4_create_referral_server(data, &mntfh);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
		goto out_err_noserver;
	}

	/* Get a superblock - note that we may end up sharing one that already exists */
	s = sget(&nfs_fs_type, nfs_compare_super, nfs_set_super, server);
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
		goto out_err_nosb;
	}

	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}

	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs4_fill_super(s);
	}

1067
	mntroot = nfs4_get_root(s, &mntfh);
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
	}

	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;

	dprintk("<-- nfs4_referral_get_sb() = 0\n");
	return 0;

out_err_nosb:
	nfs_free_server(server);
out_err_noserver:
	dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
	return error;

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
	dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
	return error;
D
David Howells 已提交
1091 1092
}

1093
#endif /* CONFIG_NFS_V4 */