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 475
	if (data == NULL) {
		dprintk("%s: missing data argument\n", __FUNCTION__);
		return -EINVAL;
D
David Howells 已提交
476 477
	}

478 479 480 481
	if (data->version <= 0 || data->version > NFS_MOUNT_VERSION) {
		dprintk("%s: bad mount version\n", __FUNCTION__);
		return -EINVAL;
	}
D
David Howells 已提交
482

483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
	switch (data->version) {
		case 1:
			data->namlen = 0;
		case 2:
			data->bsize  = 0;
		case 3:
			if (data->flags & NFS_MOUNT_VER3) {
				dprintk("%s: mount structure version %d does not support NFSv3\n",
						__FUNCTION__,
						data->version);
				return -EINVAL;
			}
			data->root.size = NFS2_FHSIZE;
			memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
		case 4:
			if (data->flags & NFS_MOUNT_SECFLAVOUR) {
				dprintk("%s: mount structure version %d does not support strong security\n",
						__FUNCTION__,
						data->version);
				return -EINVAL;
			}
		case 5:
			memset(data->context, 0, sizeof(data->context));
D
David Howells 已提交
506
	}
507

508 509 510 511
	/* Set the pseudoflavor */
	if (!(data->flags & NFS_MOUNT_SECFLAVOUR))
		data->pseudoflavor = RPC_AUTH_UNIX;

512 513 514 515 516
#ifndef CONFIG_NFS_V3
	/* If NFSv3 is not compiled in, return -EPROTONOSUPPORT */
	if (data->flags & NFS_MOUNT_VER3) {
		dprintk("%s: NFSv3 not compiled into kernel\n", __FUNCTION__);
		return -EPROTONOSUPPORT;
D
David Howells 已提交
517
	}
518
#endif /* CONFIG_NFS_V3 */
D
David Howells 已提交
519

520
	/* We now require that the mount process passes the remote address */
521
	if (!nfs_verify_server_address((struct sockaddr *) &data->addr)) {
522 523 524
		dprintk("%s: mount program didn't pass remote address!\n",
			__FUNCTION__);
		return -EINVAL;
D
David Howells 已提交
525 526
	}

527 528 529 530 531
	/* Prepare the root filehandle */
	if (data->flags & NFS_MOUNT_VER3)
		mntfh->size = data->root.size;
	else
		mntfh->size = NFS2_FHSIZE;
D
David Howells 已提交
532

533 534 535 536 537 538 539 540 541
	if (mntfh->size > sizeof(mntfh->data)) {
		dprintk("%s: invalid root filehandle\n", __FUNCTION__);
		return -EINVAL;
	}

	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);
D
David Howells 已提交
542 543 544 545 546

	return 0;
}

/*
547
 * Initialise the common bits of the superblock
D
David Howells 已提交
548
 */
549
static inline void nfs_initialise_sb(struct super_block *sb)
D
David Howells 已提交
550
{
551
	struct nfs_server *server = NFS_SB(sb);
552

553
	sb->s_magic = NFS_SUPER_MAGIC;
D
David Howells 已提交
554

555 556 557
	/* 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));
558

559 560 561
	if (sb->s_blocksize == 0)
		sb->s_blocksize = nfs_block_bits(server->wsize,
						 &sb->s_blocksize_bits);
D
David Howells 已提交
562

563 564
	if (server->flags & NFS_MOUNT_NOAC)
		sb->s_flags |= MS_SYNCHRONOUS;
D
David Howells 已提交
565

566
	nfs_super_set_maxbytes(sb, server->maxfilesize);
D
David Howells 已提交
567 568 569
}

/*
570
 * Finish setting up an NFS2/3 superblock
D
David Howells 已提交
571
 */
572
static void nfs_fill_super(struct super_block *sb, struct nfs_mount_data *data)
D
David Howells 已提交
573 574
{
	struct nfs_server *server = NFS_SB(sb);
575

576 577 578 579
	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 已提交
580

581 582 583 584 585 586
	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;
587
	}
588 589 590

	sb->s_op = &nfs_sops;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
591 592 593
}

/*
594
 * Finish setting up a cloned NFS2/3 superblock
D
David Howells 已提交
595
 */
596 597
static void nfs_clone_super(struct super_block *sb,
			    const struct super_block *old_sb)
D
David Howells 已提交
598
{
599 600 601 602 603
	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 已提交
604 605

	if (server->flags & NFS_MOUNT_VER3) {
606 607
		/* The VFS shouldn't apply the umask to mode bits. We will do
		 * so ourselves when necessary.
D
David Howells 已提交
608 609 610 611 612
		 */
		sb->s_flags |= MS_POSIXACL;
		sb->s_time_gran = 1;
	}

613 614
	sb->s_op = old_sb->s_op;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
615 616
}

617
static int nfs_set_super(struct super_block *s, void *_server)
D
David Howells 已提交
618
{
619 620 621 622 623 624 625 626
	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 已提交
627 628 629 630
}

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

633
	if (old->nfs_client != server->nfs_client)
D
David Howells 已提交
634
		return 0;
635
	if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
D
David Howells 已提交
636
		return 0;
637
	return 1;
D
David Howells 已提交
638 639
}

640 641
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 已提交
642 643 644
{
	struct nfs_server *server = NULL;
	struct super_block *s;
645
	struct nfs_fh mntfh;
D
David Howells 已提交
646
	struct nfs_mount_data *data = raw_data;
647 648
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
649

650 651 652
	/* Validate the mount data */
	error = nfs_validate_mount_data(data, &mntfh);
	if (error < 0)
653
		goto out;
D
David Howells 已提交
654

655 656 657 658
	/* Get a volume representation */
	server = nfs_create_server(data, &mntfh);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
659
		goto out;
D
David Howells 已提交
660 661
	}

662
	/* Get a superblock - note that we may end up sharing one that already exists */
D
David Howells 已提交
663
	s = sget(fs_type, nfs_compare_super, nfs_set_super, server);
664 665
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
666
		goto out_err_nosb;
667 668
	}

669 670 671 672
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}
D
David Howells 已提交
673

674 675 676 677 678
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs_fill_super(s, data);
	}
D
David Howells 已提交
679

680 681 682 683
	mntroot = nfs_get_root(s, &mntfh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
684
	}
685

686 687 688
	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
689 690 691 692
	error = 0;

out:
	return error;
693

694 695
out_err_nosb:
	nfs_free_server(server);
696
	goto out;
697 698 699 700

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
701
	goto out;
D
David Howells 已提交
702 703
}

704 705 706
/*
 * Destroy an NFS2/3 superblock
 */
D
David Howells 已提交
707 708 709 710 711
static void nfs_kill_super(struct super_block *s)
{
	struct nfs_server *server = NFS_SB(s);

	kill_anon_super(s);
712
	nfs_free_server(server);
D
David Howells 已提交
713 714
}

715 716 717 718 719 720
/*
 * 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 已提交
721 722
{
	struct nfs_clone_mount *data = raw_data;
723 724 725 726
	struct super_block *s;
	struct nfs_server *server;
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
727

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

730 731 732 733 734 735
	/* 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;
	}
736

737 738 739 740 741 742
	/* 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;
	}
743

744 745 746
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
D
David Howells 已提交
747
	}
748

749 750 751 752 753
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs_clone_super(s, data->sb);
	}
D
David Howells 已提交
754

755 756 757 758
	mntroot = nfs_get_root(s, data->fh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
759 760
	}

761 762 763
	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
D
David Howells 已提交
764

765 766
	dprintk("<-- nfs_xdev_get_sb() = 0\n");
	return 0;
767

768 769 770 771 772
out_err_nosb:
	nfs_free_server(server);
out_err_noserver:
	dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
	return error;
D
David Howells 已提交
773

774 775 776 777 778
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 已提交
779 780
}

781 782
#ifdef CONFIG_NFS_V4

D
David Howells 已提交
783
/*
784
 * Finish setting up a cloned NFS4 superblock
D
David Howells 已提交
785
 */
786 787
static void nfs4_clone_super(struct super_block *sb,
			    const struct super_block *old_sb)
D
David Howells 已提交
788
{
789 790 791
	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 已提交
792
	sb->s_time_gran = 1;
793 794
	sb->s_op = old_sb->s_op;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
795 796
}

797 798 799 800
/*
 * Set up an NFS4 superblock
 */
static void nfs4_fill_super(struct super_block *sb)
D
David Howells 已提交
801
{
802 803 804
	sb->s_time_gran = 1;
	sb->s_op = &nfs4_sops;
	nfs_initialise_sb(sb);
D
David Howells 已提交
805 806
}

807 808 809
/*
 * Get the superblock for an NFS4 mountpoint
 */
810 811
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 已提交
812 813
{
	struct nfs4_mount_data *data = raw_data;
814 815 816 817 818 819
	struct super_block *s;
	struct nfs_server *server;
	struct sockaddr_in addr;
	rpc_authflavor_t authflavour;
	struct nfs_fh mntfh;
	struct dentry *mntroot;
820
	char *p, *mntpath = NULL, *hostname = NULL, *ip_addr = NULL;
821
	int error;
D
David Howells 已提交
822 823 824

	if (data == NULL) {
		dprintk("%s: missing data argument\n", __FUNCTION__);
825
		return -EINVAL;
D
David Howells 已提交
826 827 828
	}
	if (data->version <= 0 || data->version > NFS4_MOUNT_VERSION) {
		dprintk("%s: bad mount version\n", __FUNCTION__);
829
		return -EINVAL;
D
David Howells 已提交
830 831
	}

832 833 834 835 836 837 838
	/* 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;

839
	if (!nfs_verify_server_address((struct sockaddr *) &addr)) {
840 841 842 843
		dprintk("%s: mount program didn't pass remote IP address!\n",
				__FUNCTION__);
		return -EINVAL;
	}
844

845 846
	/* RFC3530: The default port for NFS is 2049 */
	if (addr.sin_port == 0)
847
		addr.sin_port = htons(NFS_PORT);
848 849 850 851 852 853 854 855

	/* 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;
856
			goto out;
857 858 859 860 861
		}

		if (copy_from_user(&authflavour, data->auth_flavours,
				   sizeof(authflavour))) {
			error = -EFAULT;
862
			goto out;
863 864
		}
	}
D
David Howells 已提交
865

866
	p = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
D
David Howells 已提交
867 868
	if (IS_ERR(p))
		goto out_err;
869
	hostname = p;
D
David Howells 已提交
870

871
	p = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
D
David Howells 已提交
872 873
	if (IS_ERR(p))
		goto out_err;
874
	mntpath = p;
D
David Howells 已提交
875

876 877
	dprintk("MNTPATH: %s\n", mntpath);

878
	p = strndup_user(data->client_addr.data, 16);
D
David Howells 已提交
879 880
	if (IS_ERR(p))
		goto out_err;
881
	ip_addr = p;
D
David Howells 已提交
882

883 884 885 886 887
	/* Get a volume representation */
	server = nfs4_create_server(data, hostname, &addr, mntpath, ip_addr,
				    authflavour, &mntfh);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
888
		goto out;
D
David Howells 已提交
889 890
	}

891 892
	/* 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);
893 894
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
D
David Howells 已提交
895
		goto out_free;
896 897
	}

898 899 900 901 902
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}

903 904 905 906 907
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs4_fill_super(s);
	}
D
David Howells 已提交
908

909 910 911 912
	mntroot = nfs4_get_root(s, &mntfh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
913
	}
914

D
David Howells 已提交
915
	s->s_flags |= MS_ACTIVE;
916 917
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
918 919 920 921
	error = 0;

out:
	kfree(ip_addr);
922 923
	kfree(mntpath);
	kfree(hostname);
924
	return error;
925

D
David Howells 已提交
926
out_err:
927
	error = PTR_ERR(p);
928
	goto out;
929

D
David Howells 已提交
930
out_free:
931
	nfs_free_server(server);
932
	goto out;
933 934 935 936

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
937
	goto out;
D
David Howells 已提交
938 939 940 941 942 943 944 945 946 947
}

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);
948
	nfs_free_server(server);
D
David Howells 已提交
949 950 951
}

/*
952
 * Clone an NFS4 server record on xdev traversal (FSID-change)
D
David Howells 已提交
953
 */
954 955 956
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 已提交
957
{
958 959 960 961 962
	struct nfs_clone_mount *data = raw_data;
	struct super_block *s;
	struct nfs_server *server;
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
963

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

966 967 968 969 970
	/* 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 已提交
971 972
	}

973 974 975 976 977
	/* 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 已提交
978 979
	}

980 981 982 983
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}
D
David Howells 已提交
984

985 986 987 988 989
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs4_clone_super(s, data->sb);
	}
D
David Howells 已提交
990

991 992 993 994 995
	mntroot = nfs4_get_root(s, data->fh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
	}
D
David Howells 已提交
996

997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
	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 已提交
1015 1016
}

1017 1018 1019 1020 1021 1022
/*
 * 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 已提交
1023 1024
{
	struct nfs_clone_mount *data = raw_data;
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
	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);
	}

1058
	mntroot = nfs4_get_root(s, &mntfh);
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
	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 已提交
1082 1083
}

1084
#endif /* CONFIG_NFS_V4 */